API Key GET
GEThttps://sandbox.absmartly.com/v1/api_keys/:apiKeyId
Required Permissions: ApiKey Get
or ApiKey Admin
Request
Path Parameters
apiKeyId integerrequired
The id of the API Key that you wish to get data from.
Responses
- 200
A JSON Object a particular API key's data.
- application/json
- Schema
- Example (from schema)
Schema
api_key object
{
"api_key": {
"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-06-04T15:17:12.756Z",
"created_at": "2025-06-04T15:17:12.756Z",
"created_by_user_id": 0,
"updated_at": "2025-06-04T15:17:12.756Z",
"updated_by_user_id": 0,
"created_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-06-04T15:17:12.756Z",
"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/:apiKeyId' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear