Skip to content

Delete an Entry

Moves a content entry to the trash (soft delete). The entry can be restored from the admin panel or force-deleted permanently.

DELETE /api/{projectId}/{collectionSlug}/{uuid}

Parameters

ParameterTypeDescription
projectIduuidYour project UUID
collectionSlugstringThe collection slug
uuiduuidThe entry UUID

Request

Terminal window
curl -X DELETE https://your-domain.com/api/{projectId}/posts/550e8400-... \
-H "Authorization: Bearer YOUR_API_TOKEN"

Response

Returns HTTP 204 No Content on success (empty body).

Status codes

StatusDescription
204Deleted (moved to trash)
403Insufficient permissions
404Entry not found