Skip to main content
Limited Release
Credit note management helps you track and control credit notes after you create them. You can list credit notes with filters, retrieve detailed information, and void credit notes when necessary.

List credit notes

Use a valid access token and make a GET call to the /v1/commerce/billing/credit-notes endpoint. Include the following query parameters: For information on all parameters, see API reference.
A successful call returns a 200 OK response with a paginated list of credit notes.

Get credit note details

Use a valid access token and make a GET call to the /v1/commerce/billing/credit-notes/{credit_note_id} endpoint. Path parameter: credit_note_id is the id returned in the List credit notes response.
A successful call returns a 200 OK response with the credit note details.

Void credit notes

Use a valid access token and make a POST call to the /v1/commerce/billing/credit-notes/{credit_note_id}/void endpoint. When you void a credit note, you make it no longer available for use. You cannot undo this action. Path parameter: credit_note_id is the id returned in the List credit notes response.
A successful call returns a 200 OK response with the voided credit note details.