One API call on pay day. Your salary sheet, done.
GET /api/v1/payroll/summary with a from and to date. You get back every employee's leave days taken (broken down by type), net penalty deductions, net reward credits, and special shift extra hours โ in your tenant's currency. Pipe it directly into Sage, QuickBooks, or a custom salary sheet.
GET /api/v1/payroll/summary?from=2026-03-01&to=2026-03-31{
"period": { "from": "2026-03-01", "to": "2026-03-31" },
"employees": [
{
"name": "Jane Nakato",
"department": "Operations",
"leaveDaysTaken": 3,
"leaveBreakdown": [{ "type": "Annual Leave", "days": 3 }],
"netPenaltyAmount": -15000,
"netRewardAmount": 5000,
"specialShiftExtraHours": 4,
"currency": "UGX"
}
]
}