/bff/dashboard/overdue-invoices
Returns invoices past their due date grouped by aging buckets. Critical for B2B businesses to manage cash flow and credit risk.
DashboardgetBffDashboardOverdue-invoices
No parameters
This endpoint takes no path, query, header or body parameters.
Request
GET /bff/dashboard/overdue-invoices
curl -X GET "https://api.bizkithub.com/bff/dashboard/overdue-invoices" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
Overdue invoices summary with aging analysis.
{
"totalOverdue": 0,
"invoiceCount": 0,
"agingBuckets": {
"days1to7": {
"amount": 0,
"count": 0
},
"days8to30": {
"amount": 0,
"count": 0
},
"days31to60": {
"amount": 0,
"count": 0
},
"days61plus": {
"amount": 0,
"count": 0
}
},
"topDebtors": [
{
"customerId": "example_customerId",
"customerName": "example_customerName",
"amount": 0,
"invoiceCount": 0,
"oldestDueDays": 0
}
],
"currency": "example_currency"
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.