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}
organization_id string required
The unique identifier of the organization to delete (e.g., org_abc123def456).
Returns a 204 No Content status on successful deletion. No response body is returned.
cURL
- Bash
- Python
- JavaScript
curl -X DELETE "https://api.aitronos.com/v1/organizations/org_abc123def456" \
-H "X-API-Key: $FREDDY_API_KEY" \
-H "Content-Type: application/json"