V2 - Retrieve a draft invoice
by Integrations SquadDeprecation Notice
Retrieve a draft invoice is now deprecated in favor of Retrieve a customer invoice.
For more details on this initiative, please refer to our documentation.
Retrieve a draft invoice is now deprecated in favor of Retrieve a customer invoice.
For more details on this initiative, please refer to our documentation.
Before, when the requested invoice was a draft the response status was 404
.
Now, the following response is returned
{
status: 422,
error: "This endpoint is not applicable for draft invoices"
}
Before, when the requested invoice was a credit note the response status was 404
.
Now, the following response is returned
{
status: 422,
error: "This endpoint is not applicable for credit notes"
}
Few changes on status code rendered due to the Merge Project for Customer Invoices Matched Transactions endpoints. For more details on this initiative, please refer to our documentation.
As a reminder it is not possible to match a transaction to a draft invoice.
Before, when the requested invoice was a draft, the response status code was 404
.
Now this endpoint returns a 200
with an empty array.
Before, when the requested invoice was a draft, the response status code was 404
.
Now this endpoint returns a 422
with following error message: "This endpoint is not applicable for draft invoices"
Before, when the requested invoice was a draft, the response status code was 404
.
Now this endpoint returns a 422
with following error message: "This endpoint is not applicable for draft invoices"
Turn the draft invoice into a finalized invoice is now deprecated in favor of the new endpoint on the customer invoices resource.
For more details on this initiative, please refer to our documentation.
The Update a draft invoice and Update a finalized invoice endpoints are now deprecated as part of the Merge Project. For more details on this initiative, please refer to our documentation.
The 2 deprecated endpoints mentioned above will be replaced by a single update endpoint that works for both draft and finalized customer invoices.
The Retrieve a customer invoice endpoint is now able to retrieve both draft and finalized customer invoices.
🎉 We are happy to announce that part of the Merge Project, it is now possible to list and upload appendices for draft invoices. For more details on this initiative, please refer to our documentation.
List appendices for a customer invoice and Upload an appendix for a customer invoice endpoints previously returned a 404
response when the invoice was draft. There are now allow to list and create appendices for both draft and finalized invoices.
The List invoice lines for a draft invoice and List invoice line sections for a draft invoice endpoints are now deprecated as part of the Merge Project. For more details on this initiative, please refer to our documentation.
List invoice lines for a customer invoice and List invoice line sections endpoints previously returned a 404
response when the invoice was draft. There are now allow to request associated resources for both draft and finalized invoices.
The Create Draft Invoices endpoint is now deprecated as part of the Merge Project. For more details on this initiative, please refer to our documentation.
The endpoint previously known as "Create a finalized invoice" has been renamed to "Create a customer invoice" and now supports the creation of both draft and finalized invoices through a unified interface.
A new boolean attribute draft
has been introduced, which allows you to specify whether the invoice should be created as a draft. When set to true
, the invoice will be created in draft status.
Please note the following restrictions for draft invoices:
transaction_reference
on draft invoicesimputation_dates
on draft invoicesImportant: This update maintains full backward compatibility with your existing implementation for creating finalized invoices. No changes to your current code are required if you're only creating finalized invoices.