api-keys
List API Keys
List all API keys for the authenticated user
GET
/
api
/
v1
/
api-keys
/
api_keys
/
Copy
[
{
"id": 123,
"name": "<string>",
"store_name": "<string>",
"organization_role": {
"id": 123,
"role": "ADMIN",
"user": {
"id": 123,
"best_identifier": "<string>"
}
},
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"is_active": true
}
]
Authorizations
API key in format: sk_*
Response
200 - application/json
The response is of type object[]
.
Copy
[
{
"id": 123,
"name": "<string>",
"store_name": "<string>",
"organization_role": {
"id": 123,
"role": "ADMIN",
"user": {
"id": 123,
"best_identifier": "<string>"
}
},
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"is_active": true
}
]
Assistant
Responses are generated using AI and may contain mistakes.