Skip to main content

apiKey.index

get/v1/api-keys

apiKey.index

Responses

200Array of `ApiKeyResource`
Schema Structure
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"masked_key": {
"type": "string"
},
"key": {
"type": "string"
},
"is_primary": {
"type": "boolean"
},
"is_active": {
"type": "boolean"
},
"permissions": {
"type": [
"array",
"null"
],
"items": {}
},
"last_used_at": {
"type": "string"
},
"expires_at": {
"type": "string"
},
"created_at": {
"type": "string"
}
},
"required": [
"id",
"name",
"masked_key",
"key",
"is_primary",
"is_active",
"permissions",
"last_used_at",
"expires_at",
"created_at"
],
"title": "ApiKeyResource"
}
},
"success": {
"type": "boolean"
}
},
"required": [
"data",
"success"
]
}