User GET
GEThttps://sandbox.absmartly.com/v1/users/:userId
Required Permissions: User Get
or User Admin
Request
Path Parameters
userId integerrequired
The id of the User that you wish to get data from.
Responses
- 200
A JSON Object containing a user's data.
- application/json
- Schema
- Example (from schema)
Schema
user object
{
"user": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-03-20T14:55:20.194Z",
"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/users/:userId' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear