Skip to content

Delete an entry

Deletes an entry and its translations. This cannot be undone.

DELETE /api/v1/entries/{id}

AuthRequired
Query parametersNone
BodyNone
NameTypeDescription
idstringEntry id
Authorization: Bearer <your-api-key>
Terminal window
curl -sS -X DELETE https://collingo.app/api/v1/entries/clentry0123456789abcdefg \
-H "Authorization: Bearer <your-api-key>" \
-o /dev/null -w "%{http_code}\n"

Empty body. The entry has been deleted.

StatusWhen
401Missing or invalid API key (ERR_UNAUTHORIZED)
403Insufficient role (ERR_FORBIDDEN)
404Entry not found
500Database or internal error