API docs
Resources
Invoices
Employee bills and invoices (Invoice model). Up to 500 records, sorted descending by issue date.
GET/invoices
read:invoices
Bills / invoices of a given tenant's employees.
Query parameters
yearMonthYYYY-MMopcjonalne | filter by issue month. |
onboardingIduuidopcjonalne | filter by employee. |
typeenumopcjonalne | zlecenie | dzielo. |
Request · cURL
curl -H "Authorization: Bearer onb_..." \
"https://www.onboardly.work/api/v1/invoices?yearMonth=2026-06&type=zlecenie"Response 200 · JSON
{
"count": 3,
"data": [{
"id": "uuid", "number": "FIRMA/JAN-KOWALSKI/2026/06/001", "type": "zlecenie",
"yearMonth": "2026-06", "onboardingId": "uuid", "companyId": "uuid",
"issueDate": "2026-06-30", "serviceFrom": "2026-06-01", "serviceTo": "2026-06-30",
"paidAt": null, "hours": 120.0, "hourlyRate": 30.0,
"grossAmount": 3600.0, "netAmount": 3100.0, "taxAmount": 300.0
}]
}