Skip to main content

Get user account

GET

/partner/v1.0/users/:user_account_id


Retrieves the user details.


Headers

  • Accept : application/json
  • Content-Type : application/json
  • Authorization : Bearer {access_token}

Path Parameters

user_account_id string Required
The user account id for the user.


Response

200 OK.

Parameters
id string (uuid)
The unique identifier in the Pulsifi system for the user.

user_account_id string
The user account id for the user.

status enum (default is active)
The status of the user
  • active
  • pending
  • not_invited
  • disabled

first_name string
The first name of the user.

last_name string
The last name of the user.

email string
The email of the user.

department string
The department of the user.

position string
The position of the user.

external_employee_id string
The external employee id reference of the user.

last_login_at string (UTC Date)
The last login date of the user.
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
}