Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Soft-delete an organization API key. Deleted keys remain visible in audit logs and listing responses (marked as deleted) but can no longer be used for authentication.
DELETEhttps://api.freddy.aitronos.com/v1/organizations/{organization_id}/api/{api_key_id}

Path Parameters

organization_id string required

Organization scope.

api_key_id string required

Identifier of the API key (prefixed with apk_).

Returns

No content. The key is marked as deleted and cannot be used for future requests.

Request example

Bash
curl -X DELETE "https://api.freddy.aitronos.com/v1/organizations/ORG_1234567890abcdef/api/apk_7f21a9d94e6f48b1" \
  -H "Authorization: Bearer $FREDDY_API_KEY"