apiKey.show
get/v1/api-keys/{id}
apiKey.show
Request
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| id* | path | integer | No description |
Responses
200No description
- Schema
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"masked_key": {
"type": "string"
},
"key": {
"type": "string"
},
"is_active": {
"type": "string"
},
"is_primary": {
"type": "string"
},
"permissions": {
"type": "string"
},
"created_at": {
"type": "string"
},
"last_used_at": {
"type": "string"
},
"expires_at": {
"type": "string"
}
},
"required": [
"id",
"name",
"masked_key",
"key",
"is_active",
"is_primary",
"permissions",
"created_at",
"last_used_at",
"expires_at"
]
}
},
"required": [
"success",
"data"
]
}