Tenants
List API keys
Retrieve all API keys for the tenant. Keys are masked for security — only the last 8 characters are shown.
get/api/tenants/me/api-keys
Response
List of API keys with masked values
Example response
[
{
"id": "clx1234567890",
"key": "sk_live_abc123...",
"name": "Production API Key",
"scopes": [
"read",
"write"
]
}
]Changes
Changed in 1 of the 2 revisions of this API.1
- ○
added the media type
application/jsonfor the response with the status200response-media-type-added
- ○