Delete an organization
DELETE/api/v1/orgs/{orgId}
Remove an organization by its ID. Requires confirmation of the organization name.
Parameters
orgId(Guid, required): ID of the organization.orgName(string, required): The name of the organization, used for confirmation.
Responses
204 No Content: organization deleted successfully.400 Bad Request: orgName does not match the actual organization name.403 Forbidden: caller is not admin, target is root org, org has sub-organizations, or org has other users.404 Not Found: organization not found.
Security
- This API requires authentication.
- Only an
adminof the target org may delete it. - Root organizations cannot be deleted.
- Organizations with sub-orgs or other users cannot be deleted.
Request
Responses
- 204
- 400
- 401
- 403
- 404
- 500
- 501
No Content
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Not Implemented