TenantApiKeysResponseDto
Response containing a tenant's details along with its associated API keys.
namestringrequired
Name of the tenant
Example:
KauntTenantidstringrequired
UUID of the tenant
Example:
75de5c95-4a0c-4fee-8811-434a9ecd7e79regionKauntRegionEnum (string)required
Possible values: [EU1_FRANCE, US1_ARIZONA]
markedForDeletionboolean
Indicates whether the tenant is marked for deletion. This property is used to track tenants that are scheduled for removal from the system. When set to true, it signifies that the tenant is in the process of being deleted and should not be used for any further operations.
Example:
falsedisabledModelsstring[]
List of disabled models for the tenant.
apiKeys object[]
The collection of API keys associated with the tenant.
Array [
clientIdstringrequired
The client ID of the API key
Example:
64ab81fc-70dc-4e28-b841-6bc091f1f258namestringnullable
The name given to the API key
Example:
PROD1createdAtstring<date-time>required
The timestamp of when the API key was created
Example:
2025-01-15T09:30:00apiEnvironmentAPIEnvironment (string)required
Possible values: [Sandbox, Production]
]
TenantApiKeysResponseDto
{
"name": "KauntTenant",
"id": "75de5c95-4a0c-4fee-8811-434a9ecd7e79",
"region": "EU1_FRANCE",
"markedForDeletion": false,
"disabledModels": [
"string"
],
"apiKeys": [
{
"clientId": "64ab81fc-70dc-4e28-b841-6bc091f1f258",
"name": "PROD1",
"createdAt": "2025-01-15T09:30:00",
"apiEnvironment": "Sandbox"
}
]
}