hris/employees
Retrieve Employee
Retrieve an Employee from any connected Hris software
get/hris/employees/{id}
Path parameters
idstring required
id of the employee you want to retrieve.
Query parameters
remote_databoolean
Set to true to include data from the original Hris software.
Headers
x-connection-tokenstring required
The connection token
Response
Example response
{
"groups": [
"Group1",
"Group2"
],
"locations": [
"801f9ede-c698-4e66-a7fc-48d19eebaa4f"
],
"employee_number": "EMP001",
"company_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
"first_name": "John",
"last_name": "Doe",
"preferred_name": "Johnny",
"display_full_name": "John Doe",
"username": "johndoe",
"work_email": "john.doe@company.com",
"personal_email": "john.doe@personal.com",
"mobile_phone_number": "+1234567890",
"employments": [
"801f9ede-c698-4e66-a7fc-48d19eebaa4f",
"801f9ede-c698-4e66-a7fc-48d19eebaa4f"
],
"ssn": "123-45-6789",
"gender": "MALE",
"ethnicity": "AMERICAN_INDIAN_OR_ALASKA_NATIVE",
"marital_status": "Married",
"date_of_birth": "1990-01-01",
"start_date": "2020-01-01",
"employment_status": "ACTIVE",
"termination_date": "2025-01-01",
"avatar_url": "https://example.com/avatar.jpg",
"manager_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
"field_mappings": {
"custom_field_1": "value1",
"custom_field_2": "value2"
},
"id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
"remote_id": "employee_1234",
"remote_data": {
"raw_data": {
"additional_field": "some value"
}
},
"remote_created_at": "2024-10-01T12:00:00Z",
"created_at": "2024-10-01T12:00:00Z",
"modified_at": "2024-10-01T12:00:00Z"
}