Skip to main content
DELETE
http://localhost:3000
/
tenants
/
{id}
curl -X DELETE 'https://api.example.com/tenants/tenant_acme' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Path Parameters

id
string
required
The tenant ID to delete

Response

Returns 204 No Content on success. The tenant is soft-deleted (status set to deleted).
Deleting a tenant will also delete all associated workspaces, projects, environments, and memberships.
curl -X DELETE 'https://api.example.com/tenants/tenant_acme' \
  -H 'Authorization: Bearer YOUR_TOKEN'