v1
latestOpenAPI 3.1.02026-07-242735131.1 MBTime Off Balances
Show Time Off Balance
Shows the time off balance for the given employment_id.
Deprecated since February 2025 in favour of List Leave Policies Summary endpoint.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage timeoffs (time_and_attendance) | View timeoffs (timeoff:read) | Manage timeoffs (timeoff:write) |
get/v1/timeoff-balances/{employment_id}
Path parameters
employment_idstring required
Employment ID for which to show the time off balance
Headers
Authorizationstring required
Requires a Company-scoped access token obtained through the Authorization Code flow or the Refresh Token flow.
The refresh token needs to have been obtained through the Authorization Code flow.
Response
Success
Example response
{
"data": {
"timeoff_balance": {
"contractual_entitled": {
"days": 25,
"hours": 0
},
"leave_entitlements": [
{
"entitled": {
"days": 28,
"hours": 0
},
"expiry_date": "2022-12-31",
"name": "Annual paid time off",
"remaining": {
"days": 25,
"hours": 0
},
"taken": {
"days": 3,
"hours": 0
},
"type": "annual_paid_timeoff"
},
{
"entitled": {
"days": 3,
"hours": 0
},
"expiry_date": "2022-12-31",
"name": "Extra days for good performance",
"remaining": {
"days": 3,
"hours": 0
},
"taken": {
"days": 0,
"hours": 0
},
"type": "additional_pto"
}
],
"taken": {
"days": 3,
"hours": 0
},
"total_entitled_days": 31,
"working_hours_per_day": 8
}
}
}