Time Off
Time off assignments are mappings between workers and time off policies. Useful for finding out which policies a worker is assigned to, or which workers are assigned to a given policy.
get/v1/time_off/assignments
Query parameters
limitstring
a number less than or equal to 100
a number less than or equal to 100
afterIdstring
beforeIdstring
policyIdsstring[]
[ "top_1234" ]
workerIdsstring[]
[ "wrk_1234" ]
Response
Success
Example response
{
"data": [
{
"policyId": "top_1234",
"workerId": "wrk_1234"
}
]
}