Skip to main content
DELETE
/
app
/
v1
/
organizations
/
{organizationId}
/
projects
/
{projectId}
Delete Project
curl --request DELETE \
  --url https://api.example.com/app/v1/organizations/{organizationId}/projects/{projectId}

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID

Response

{
  "message": "Project successfully deleted",
  "id": "proj123"
}
Deleting a project is a destructive operation. All components, content types, content, and assets within the project will be soft-deleted. Consider archiving the project instead if you may need to restore it later.

Error Responses

Project Not Found

{
  "error": {
    "code": "NOT_FOUND",
    "message": "Project not found"
  }
}

Code Examples

curl -X DELETE "https://api.metabind.ai/app/v1/organizations/org123/projects/proj123" \
  -H "Authorization: Bearer YOUR_JWT"