Entries
An entry definition in the Management API contains a mixture of standard properties and properties that have been defined by the content type that an entry is based on. Find out more about entries on ZenHub
Get an entry
Gets an existing entry by its id.
GET /api/management/projects/{projectId}/entries/{entryId}
Parameters
Name | Parameter type | Type | Format | Description |
---|---|---|---|---|
projectId | path | string | The project identifier, e.g. "movieDb". Found in the project overview screen of the management console. | |
entryId | path | string | GUID | The entry identifier. |
versionStatus | query | string | The version status, either published or latest. The default is latest. | |
version | query | string | versionNo | The specific version requested. |
language | query | string | LanguageCode | The variation language code. |
Example request
Accept: application/json
GET: /api/management/projects/movieDb/entries/movie/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c
Response message
HTTP status code | Reason | Response model |
---|---|---|
200 | Success | Entry |
401 | Unauthorized | Error |
404 | NotFound | Error |
500 | InternalServerError | Error |
Remarks
If a specific versionNo value has been provided then the versionStatus value will be ignored.