Delete a single item

There are two options to delete an existing content item. You can either delete a specific language variant for a content item or delete the content item as a whole.

For both operations the scopes content_items and content_items_delete are required.

Delete a language variant in the content item

To delete a specific language variant for a locale in the existing content item, request the following endpoint with the HTTP DELETE method.

DELETE: /content_items/94c56d8a-c54e-4b46-9971-a83bf06dcf52/en-US

Replace the UUID and the locale with the content item ID and locale you want to delete. If the request is successful the API will return an empty response and status code 204.

Delete the entire content item

To delete the content item as a whole, request the following endpoint with the HTTP DELETE method.

DELETE: /content_items/94c56d8a-c54e-4b46-9971-a83bf06dcf52

Replace the UUID with the content item ID you want to delete. If the request is successful the API will return an empty response and status code 204.