API Keys LIST
GEThttps://sandbox.absmartly.com/v1/api_keys
Required Permissions: ApiKey List
or ApiKey Admin
Request
Query Parameters
sort string
The object key to sort the results by.
sort_asc boolean
page integer
items integer
Responses
- 200
A JSON Object with an array of all created API keys.
- application/json
- Schema
- Example (from schema)
Schema
items integer
page integer
Possible values: >= 1
total integer
api_keys object[]
{
"items": 0,
"page": 0,
"total": 0,
"api_keys": [
{
"id": 0,
"name": "All CRUD API Key",
"description": "An API key with all permissions",
"key": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"permissions": "string",
"used_at": "2025-03-13T09:46:06.476Z",
"created_at": "2025-03-13T09:46:06.476Z",
"created_by_user_id": 0,
"updated_at": "2025-03-13T09:46:06.476Z",
"updated_by_user_id": 0,
"created_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-03-13T09:46:06.476Z",
"created_by_user_id": 0,
"department": "Marketing",
"email": "[email protected]"
}
}
]
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: A User API Key for API authorization. **Must be in the format "Api-Key your_user_api_key"**scheme: ^Api-Key\s\S+
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://sandbox.absmartly.com/v1/api_keys' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear