API ChangeLog - April 2026
April 27th, 2026
Invoice Date Validation Enforcement
We’ve introduced stricter validation on invoice issue_date to align with NRS requirements.
What Changed
- Invoices can now only be created with the current date.
- Back-dated and future-dated invoices are no longer allowed.
Affected Endpoints
POST /invoicesPOST /detailed-invoicesPOST /credit-notesPOST /debit-notesPOST /credit-notes-with-item-codesPOST /debit-notes-with-item-codes
Error Response
Requests with an invalid issue_date will return:
{
"message": "issue_date NRS does not support back-dating or future-dating of invoices.",
"code": "400",
"metadata": {
"argument": "issue_date"
}
}Impact
- This is a breaking change.
- Any existing integrations that submit invoices with past or future dates will fail.
Recommended Action
- Ensure your system always sets
issue_dateto the current date at the time of invoice creation. - Review and update any workflows that rely on backdating or scheduling invoices.
