List Employees
Get offboarding tracker
Returns the current offboarding stage for each employee currently in the offboarding 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/offboarding-tracker
Query parameters
employeeIdstring uuid
Filter by employee ID (UUID, exact match)
employeeCodestring
Filter by human-readable employee code (exact match)
Response
Successfully retrieved offboarding tracker list
Example response
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"employeeCode": "EMP-12345",
"stage": "DOCUMENTS_PENDING",
"pendingDocuments": [
"WET_INK_LETTER"
]
}
]