Skip to main content

List Employees


GET services/api/v1/employees

Returns a list of employees.

Optional Query Parameters

ParameterTypeDescription
employee_status_idstringOnly return employees that have the passed status.
has_active_employee_jobbooleanFilter by employees who either do, or do not have an active job.
has_active_or_future_employee_jobbooleanFilter by employees who either do, or do not have an active or future job.
created_at_sincetimestampOnly return employees that have been created since the specified timestamp.
updated_at_sincetimestampOnly return employees that have been updated since the specified timestamp.

Response

Results list.

{
"entries": [
{
"id": "A96ey16n",
"email": "john.doe@privatemail.com",
"company_email": "john.doe@randomcompany.org",
"first_name": "John",
"last_name": "Doe",
...
},
{
"id": "xy6q5M6d",
"email": "jane.doe@privatemail.com",
"company_email": "jane.doe@randomcompany.org",
"first_name": "Jane",
"last_name": "Doe",
...
}
],
"current_page": 1,
"per_page": 30,
"total_entries": 2
}