added
Employee API: absence balance endpoint
over 3 years ago by Matthias Mikoschek
You can now retrieve the current balance per absence type for a given employee by calling the /company/employees/{employee_id}/absences/balance
endpoint.
Find more information here
{
"success": true,
"data": [
{
"id": 21799,
"name": "Paid Vacation",
"category": NULL,
"balance": 14
},
{
"id": 33523,
"name": "Sick Days",
"category": NULL,
"balance": 0
}
]
}