Skip to main content
DELETE /api/v1/projects/{project_id} Requires projects.delete permission. This operation cascades to all environments, flags, rules, API keys, and project members associated with the project.

Path parameters

project_id
string
required
UUID of the project to delete.

Response

deleted
boolean
required
Always true when the deletion succeeds.

Errors

StatusWhen
403Caller lacks projects.delete permission
404Project not found

Example

curl -X DELETE http://localhost:8080/api/v1/projects/p1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer <token>"
{
  "deleted": true
}

Build docs developers (and LLMs) love