A new endpoint is available to retrieve direct debit invoices settled on a specific past date. The endpoint is intended for AR workflows and returns a summary of invoices per AR account for the requested date.
Required query parameters: hotel_id, date
Each invoice in the response includes:
ar_account– AR account nameaccount_number– AR account numberinvoice_number– invoice identifieramount– invoice amount; negative values indicate a credit invoicebill_id– bill identifier, which can be used to retrieve full bill details viaGET /bills/{id}/invoice
Example response:
{
"hotel_id": "317",
"date": "2025-07-01",
"invoices": [
{
"AR_account": "Apple Inc",
"account_number": "123456",
"invoice_number": "33",
"amount": "9000.00",
"bill_id": "444"
},
{
"AR_account": "American Express Inc",
"account_number": "2223346",
"invoice_number": "34",
"amount": "560.00",
"bill_id": "445"
}
]
}




