Get overdue invoices grid
Returns a paginated, filterable, and sortable grid of invoices that are past their payment due date.
What are Overdue Invoices? The “Overdue” tab shows all invoices where the payment term has passed. These invoices are in status “New” or “Sent” and have a due date that is in the past. This view helps you monitor open receivables, send reminders, and manage payment deadlines.
What is returned:
- Invoice identification (ID, number)
- Project reference (projectId)
- Invoice type (Mixed, Subscription, TimeBased, ExpressQuotation, SingleProject, InterimPayment)
- Creation and sending dates (createdAt, sentAt)
- Payment due date (dueDate)
- Reminder dates (firstReminderAt, secondReminderAt)
- Number of days overdue (overdueDays)
- Net amount before taxes and fees (netto)
- Invoice status (New, Sent)
Filtering and search:
- Quick search across invoice number
- Filter by project, type, status, dates, amount, and overdue days
- Sort by any field (default: overdueDays descending)
Retrieves a paginated grid of overdue invoices with filtering and sorting capabilities. Quick search available on: number. Filterable fields: id, number, projectId, type, createdAt, sentAt, dueDate, firstReminderAt, secondReminderAt, netto, status, overdueDays. Sortable fields: id, number, projectId, type, createdAt, sentAt, dueDate, firstReminderAt, secondReminderAt, netto, status, overdueDays.
/billing/invoices/overdueAuthorizationOAuth2 access token · headerrequiredapi:readAuthorizationBearer token (JWT) · headerrequiredpagenumberpageSizenumberviewIdstringquickSearchstringfiltersstringsortstringfieldsToReturnany[]curl -X GET "https://leadtime.app/api/public/billing/invoices/overdue" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/billing/invoices/overdue", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/billing/invoices/overdue",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)