added

New v3 API endpoints for credit memos

We have introduced a set of API endpoints for credit memo operations. You can now create credit memos for adjusting the invoice amount owed by customers.

OperationAPI endpoint
Create a credit memoPOST /v3/credit-memos
Get list of credit memosGET /v3/credit-memos
Get credit memo detailsGET /v3/credit-memos/{creditMemoId}
Update a credit memoPATCH /v3/credit-memos/{creditMemoId}
Replace a credit memoPUT /v3/credit-memos/{creditMemoId}
Archive a credit memoPOST /v3/credit-memos/{creditMemoId}/archive
Restore a credit memoPOST /v3/credit-memos/{creditMemoId}/restore
Create multiple credit memosPOST /v3/credit-memos/bulk
Update multiple credit memosPATCH v3/credit-memos/bulk
Replace multiple credit memosPUT v3/credit-memos/bulk
Archive multiple credit memosPOST /v3/credit-memos/bulk/archive
Restore multiple credit memosPOST /v3/credit-memos/bulk/restore

In addition, you can apply credit memo amounts to invoices. In the create and update invoice operations, you can now set the new creditAmount field in your request as the credit amount applied to an invoice.