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.
tax_numberstringOnly return employees that have the specified case-sensitive tax number (italy).
social_security_numberstringOnly return employees that have the specified case-sensitive social_security_number (austria).
tax_identification_numberstringOnly return employees that have the specified case-sensitive tax identification number (germany).
employee_numberstringOnly return employees that have the specified employee number.
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": "7bBJMyz2",
"employee_status_id": "1AayjkI2",
"supervisor_id": null,
"location_id": "29jLAnMs",
"department_id": "3Bkl2jAH",
"first_name": "John",
"last_name": "Doe",
"language": "en",
"gender": "male",
"email": "john.doe@privatemail.com",
"company_email": "john.doe@companymail.org",
"phone": "+39 1234567890",
"company_phone": "+39 0471 234567"
"photo_url": "https://www.onboard.org/assets/images/logo/onboard_logo_RGB-340.png",
"birthday": "1992-06-15",
"tax_number": "RSSMRA84A41F132U",
"employee_number": "123",
"nationality": "DE",
"birthplace": "München",
"street": "Dr. J. Köllensperger Str. 10/b",
"city": "Lana",
"postal_code": "39011",
"region": "BZ",
"country_code": "IT",
"iban": "IT02930293209090",
"swift": "BIC12345",
"has_active_employee_job": true,
"has_active_or_future_employee_job": true,
"first_employee_job_from": "2024-01-01",
"first_employee_job_to": null,
"last_employee_job_from": "2024-01-01",
"last_employee_job_to": null,
"current_employee_job_from": "2024-01-01",
"current_employee_job_to": null,
"current_or_last_employee_job_from": "2024-01-01",
"current_or_last_employee_job_to": null,
"cf_110": null,
"created_at": "2023-12-31T09:32:31.262Z",
"updated_at": "2024-01-01T11:53:55.662Z"
},
{
"id": "xy6q5M6d",
"employee_status_id": "1AayjkI2",
"supervisor_id": null,
"location_id": "29jLAnMs",
"department_id": "3Bkl2jAH",
"first_name": "Jane",
"last_name": "Doe",
"language": "en",
"gender": "male",
"email": "jane.doe@privatemail.com",
"company_email": "jane.doe@randomcompany.org",
"phone": "+39 1234567890",
"company_phone": "+39 0471 234567"
"photo_url": "https://www.onboard.org/assets/images/logo/onboard_logo_RGB-340.png",
"birthday": "1990-01-02",
"tax_number": "RSSMRA84A41F132U",
"employee_number": "123",
"nationality": "IT",
"birthplace": "Meran",
"street": "Dr. J. Köllensperger Str. 10/b",
"city": "Lana",
"postal_code": "39011",
"region": "BZ",
"country_code": "IT",
"iban": "IT02930293209090",
"swift": "BIC12345",
"has_active_employee_job": true,
"has_active_or_future_employee_job": true,
"first_employee_job_from": "2029-01-01",
"first_employee_job_to": null,
"last_employee_job_from": "2029-01-01",
"last_employee_job_to": null,
"current_employee_job_from": null,
"current_employee_job_to": null,
"current_or_last_employee_job_from": "2029-01-01",
"current_or_last_employee_job_to": null,
"cf_110": null,
"created_at": "2023-12-31T09:32:31.262Z",
"updated_at": "2024-01-01T11:53:55.662Z"
}
],
"current_page": 1,
"per_page": 30,
"total_entries": 2
}