Content Management API
The Content Management API is a REST API that you can use to create, manage, and deliver content and media. This includes creating, updating, and deleting content types and content items as well as adding media items. Content types make up the content model while content items contain the data itself. The API definitions are written in JSON.
Before you start working with the Content Management API, here are some important things to note.
An overview of how to use the Content Management API and the Media Upload API is available on the Discover Sitecore channel.
For guidance on the API syntax, see Syntax.
API development environment
You can use the Content Management API with the development tool of your choice such as Swagger or Postman.
Authentication
In the Content Management API, tokens are used for API security. To use the API, generate an OAuth client bearer token and use it to authenticate.
Methods
The Content Management API supports the following methods:
|
Method |
Description |
|---|---|
|
GET |
Retrieves a content type, content item, or media item using the ID. Retrieves a list of all content types, content items, or media items. |
|
POST |
Creates a content type, content item, or media item. Publishes content items and media items. |
|
PUT |
Updates a content type, content item, or media item. |
|
DELETE |
Deletes content type, content item, or media item. |
Endpoints
In the Content Management API, the following endpoints are available:
|
Endpoint |
Base URL |
Description |
|---|---|---|
|
Content management |
|
This endpoint is used when creating and editing content types, content items, and media items. |
|
Media upload |
|
This endpoint is used when uploading media assets. |
|
Media delivery |
|
This endpoint is used when retrieving media assets. |
Endpoints are categorized as follows:
-
Content types
-
Content items
-
Media items
-
Users
-
Taxonomies
Endpoints have the following structure:
Where:
-
<
BASE_URL> is the hostname of the Content Hub ONE application backend, which is part of the endpoint. -
<
DATA_TYPE> is eithercontentormedia. -
<
VERSION> is the version of the Content Management API. -
<
ENDPOINT_NAME> is the name of the endpoint that covers one specific domain. -
<
PATH_PARAMETER> includes additional parameters from path. -
<
QUERY_PARAMETER> includes additional parameters from query string.
Request headers
The following header is used to track content versions.
Response headers
All responses contain the following response headers:
API rate limits
The following response headers show the allowed limits, the number of available requests, and the time remaining until the limits are reached.
|
Header |
Description |
|---|---|
|
|
The software used for API rate limits, including the version. |
|
|
Proxy latency or overhead. |
|
|
Upstream latency or overhead. |
|
|
The maximum number of requests per second. |
|
|
The number of requests per second remaining. |
Content Hub ONE supports 10 requests per second per tenant.
Status codes
The following table lists the status codes that you might see after executing an operation:
|
Status code |
Message |
Description |
|---|---|---|
|
|
|
Content item or media item was successfully retrieved or updated; or content type was successfully updated. |
|
|
|
Content type, content item, or media item was successfully created. |
|
|
|
Content type, content item, or media item was successfully deleted. |
|
|
|
Invalid query string, invalid object or missing content type in request body, or invalid request. |
|
|
|
Invalid access token. |
|
|
|
Request does not contain required scopes. |
|
|
|
Content type, content item, or media item was not found using the specified ID. |
|
|
|
Server-side exception during request execution. |