DELETE · Delete organization

Destroy an org and everything in it. Irreversible.

DELETE /api/orgs/:id

Destroy the org and everything underneath it. Only owners.

This is irreversible. Memories, namespaces, tokens, members, webhooks, runbooks, entities, relations, exports, audit log — everything CASCADE-deletes off orgs.id.

curl -X DELETE https://www.mnueron.com/api/orgs/01HQ… \
  -H "Authorization: Bearer $MNUERON_API_TOKEN"

Response

204 No Content on success.

Errors

StatusReason
403Caller is not an owner
404Org doesn't exist or caller is not a member

⚠️ If you delete the org your current bearer token is bound to, that token is immediately invalidated (it CASCADE-deletes too). You'll see 401 session expired on the next request.

Last updated 2026-05-24edit