Skip to content

Delete a project

Permanently deletes a project and all of its groups, entries, and translations. Only the project owner can delete it.

DELETE /api/v1/projects/{id}

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

Empty body. The project has been deleted.

StatusWhen
401Missing or invalid API key (ERR_UNAUTHORIZED)
403Not the owner (ERR_FORBIDDEN)
404Project not found (ERR_PROJECT_NOT_FOUND)
500Database or internal error