List Employees

Retrieve a paginated list of employees with optional expansions for related data.

GET
/api/v1/employees?page=1

Description

Retrieves all employees and their associated locations registered on your organization account. This endpoint supports pagination and optional email filtering.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Query Parameters

ParameterTypeRequiredDescription
pageNumberNoSpecifies the page number for pagination. Default is 1.
emailStringNoFilter employees by email address. Returns only matching employees.

Response Fields

FieldTypeDescription
totalUsersnumberTotal number of users in the result set
totalPagesnumberTotal number of available pages
currentPagenumberCurrent page number
users[]arrayList of employee records
users[].AssignedAssetsarrayAssets assigned to a user (can be empty)
users[].FirstNamestringEmployee first name
users[].LastNamestringEmployee last name
users[].EmailstringEmployee email address
users[].Address_1stringPrimary address line
users[].CitystringCity name
users[].StatestringState or region
users[].ZipstringPostal or ZIP code

Notes

  • Default page size is up to 10 records per page.
  • Use the optional email query parameter to filter results.
  • Always send a valid bearer token in the Authorization header.

Related Endpoints

Did this page help you?