List Employees
Get onboarding tracker
Returns the current onboarding stage for each employee currently in the onboarding lifecycle.
Optional filters narrow the result to a specific employee. When both filters are provided they are applied as an AND (intersection).
get/v1/employees/onboarding-tracker
Query parameters
employeeIdstring uuid
Filter by employee ID (UUID, exact match)
employeeCodestring
Filter by human-readable employee code (exact match)
Response
Successfully retrieved onboarding tracker list
Example response
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"employeeCode": "EMP-12345",
"stage": "VERIFICATION"
}
]