Skip to content
Last updated

Delete an organization. This performs a soft delete, preserving the organization data for audit purposes. Only the organization owner can delete an organization.

DELETEhttps://api.aitronos.com/v1/organizations/{organization_id}

Path Parameters

organization_id string required

The unique identifier of the organization to delete (e.g., org_abc123def456).


Returns

Returns a 204 No Content status on successful deletion. No response body is returned.

cURL
curl -X DELETE "https://api.aitronos.com/v1/organizations/org_abc123def456" \
  -H "X-API-Key: $FREDDY_API_KEY" \
  -H "Content-Type: application/json"