Retrieves the user account list.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Query Parameters
page
nullable number OptionalIndicates which specific page of results you want to retrieve. The default value is 1.
page_size
nullable number OptionalIndicates how many items should be included in each page of results. The default value is 25.
sort_by
nullable string OptionalComma separated sortable fields (e.g., name, +name, -name, email, +email, -email).
q
nullable string OptionalKeyword to filter with user account name or email.
Response
200 OK.
Parameters
GET /users
curl -X GET 'https://staging.api.pulsifi.me/partner/v1.0/users?page={page}&page_size={limit}&sort_by={string}&q={string}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"data": {
"total_count": 1,
"result": [
{
"id": "<Pulsifi User ID>",
"user_account_id": "<User Account ID>",
"status": "active",
"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
}