Delete an organization
/api/v1/organizations/{id}Deletes an organization by id: removes every membership, revokes every pending invitation bound to it, and soft-deletes the organization. Member identities themselves are untouched and keep their memberships in other organizations. Supports optimistic concurrency via the If-Match header (409 on a version mismatch). Responds 204 No Content, requires the hierarchy.manage permission at the organization, and emits organization.deleted.
Authentication
Bearer Token
Authorization Option A JWT access token
API Key
X-API-Key Option B API key for management-tier access
Path Parameters
idstring Required Headers
if-matchrequiredIf-MatchOptimistic-lock version of the resource. Send the `version` field returned on read; the server rejects with 409 if the row has changed since.
Responses
Organization deleted
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
curl -X DELETE "https://auth.canopy-io.com/api/v1/organizations/value" \ -H "if-match: value" \ -H "If-Match: value" \ -H "X-API-Key: $CANOPY_API_KEY"
HTTP/1.1 204 Organization deleted (empty body)
Tell us how we can improve this guide.