Tenants
Create a new API key
Generate a new API key with specified scopes. The full key is returned only once in the response — store it securely.
post/api/tenants/me/api-keys
Request body
Example request
{
"name": "Production API Key",
"scopes": [
"read",
"write"
]
}Response
API key created. The key value is shown only once.
Example response
{
"id": "clx1234567890",
"key": "sk_live_abc123...",
"name": "Production API Key",
"scopes": [
"read",
"write"
]
}