Skip to main content
CodivDocs

Delete a project

Permanently delete a project, all its pages, and all its deployments. This cannot be undone.

DELETE/projects/{id}

Authorization

Requires: BearerAuth

Path parameters

idstring (uuid)pathrequired

Response

204Project deleted (no body)

404Project not found

errorstringrequired
Machine-readable error code (e.g. `invalid_request`, `unauthorized`, `not_found`)
messagestringrequired
Human-readable error description
Delete a project
curl --request DELETE \
  --url 'https://api.codivdocs.com/v1/projects/{id}' \
  --header 'Authorization: Bearer <token>'
{
  "error": "<string>",
  "message": "<string>"
}