Retrieves the user details.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Path Parameters
user_account_id
nullable string RequiredThe user account id for the user.
Response
200 OK.
Parameters
GET /users/:user_account_id
curl -X GET 'https://staging.api.pulsifi.me/partner/v1.0/users/{user_account_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"data": {
"id": "<Pulsifi User ID>",
"user_account_id": "<User Account ID>",
"status": "pending",
"first_name": "<First Name>",
"last_name": "<Last Name>",
"email": "<Email>",
"department": "<Department>",
"position": "<Position>",
"external_employee_id": "<External Employee ID>",
"last_login_at": "<Last Login At>"
},
"meta": null
}