HTTP - Management
Removed from your favourites
Delete an entry
Created by Contensis product team, last modified by m.summerfield on 17 Aug 2022
Deletes an entire entry or specific language variations.
DELETE/api/management/projects/{projectId}/entries/{entryId}?language={comma separated list of variations to delete}&permanent={permanently delete}
Parameters
Name | Parameter type | Type | Format | Description | Example | Required |
---|---|---|---|---|---|---|
projectId | path | string | The project identifier found in the project overview screen of the management console | movieDb | true | |
entryId | query | string | uuid | The entry identifier as a 128 bit GUID | true | |
language | path | string[...] | language | A comma separated list of variations to delete | fr,de | false |
permanent | query | boolean | Whether a deletion should be permanent (true) or to the recycle bin (false) | false |
Examples
An example showing how to delete an entry and all it's language variations
HTTP
DELETE: /api/management/projects/movieDb/entries/movie/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c
An example showing how to delete the French and German language variations of an entry
HTTP
DELETE: /api/management/projects/movieDb/entries/movie/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c?language=fr,de
An example showing how to permanently delete the French and German language variations of an entry
HTTP
DELETE: /api/management/projects/movieDb/entries/movie/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c?language=fr,de&permenent=true
Remarks
You must be authorised to delete all the language variations or the whole request will fail.