ApiKeyInfo
Response struct for listing API keys (never includes the secret)
Properties
| Property | Type | Required | Description |
|---|---|---|---|
created_at |
string | Yes | |
expires_at |
string,null | No | |
id |
string | Yes | |
key_id |
string | Yes | |
key_prefix |
string | Yes | |
last_used_at |
string,null | No | |
name |
string | Yes | |
organization_id |
string | Yes | |
revoked_at |
string,null | No |
View JSON Schema
{
"type": "object",
"description": "Response struct for listing API keys (never includes the secret)",
"required": [
"id",
"key_id",
"name",
"key_prefix",
"organization_id",
"created_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"expires_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"id": {
"type": "string",
"format": "uuid"
},
"key_id": {
"type": "string"
},
"key_prefix": {
"type": "string"
},
"last_used_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"name": {
"type": "string"
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"revoked_at": {
"type": [
"string",
"null"
],
"format": "date-time"
}
}
}