Delete an entry
Deletes an entry or specific variations by Id.
DELETE /api/management/projects/{projectId}/entries/{entryId} DELETE /api/management/projects/{projectId}/entries/{entryId}?language={comma separated list of variations to delete}
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. |
Example requests
Accept: application/json
DELETE: /api/management/projects/movieDb/entries/movie/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c
Accept: application/json
DELETE: /api/management/projects/movieDb/entries/movie/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c?language=en-GB,fr
Please note you must be authorised to delete all the language variations or the whole request will fail.
Response message
HTTP status code | Reason | Response model |
---|---|---|
200 | Success | Entry |
401 | Unauthorized | Error |
404 | NotFound | Error |
500 | InternalServerError | Error |