February 12, 2025
The February 12, 2025 Karbon API release includes several updates to our billing APIs
Get Invoice Payments
The Invoice API can now be queried to return all of the payments and credit applied to an invoice by using
=Payments
GET /v3/Invoices/{InvoiceKey}$expand=LineItems,Payments
Please note that this expand only works for individual invoice requests and not the invoice lists request.
The array of payments returned is the same as the list seen on the Invoice Payments tab. Each payment returns basic details including
PaymentType
- means a Karbon PaymentJSONCopied!
Payment
- means a Karbon Payment has been reversed or refundedJSONCopied!
Payment Reversed
- means a Manual Payment that has been created in Karbon or via the APIJSONCopied!
Manual Payment
- means a Manual Payment has been reversedJSONCopied!
Manual Payment Reversed
- means credit from the corresponding Credit Note has been appliedJSONCopied!
Credit Note
Get Payments
A new Payments API can now be queried to return a list of payments:
GET /v3/Payments/
This is the same as the payments seen on the Payment Report under Billing / Finance / Payments. Each payment include basic details including
PaymentType
- means a Karbon PaymentJSONCopied!
Payment
- means a Karbon Payment has been reversed or refundedJSONCopied!
Payment Reversed
- means a Karbon Payment is processing and has not yet succeededJSONCopied!
Payment Processing
- means a Karbon Payment failed and will be reversedJSONCopied!
Payment Failed
- means a Manual PaymentJSONCopied!
Manual Payment
- Reversed means a Manual Payment has been reversedJSONCopied!
Manual Payment
Where
PaymentType
Karbon Payment
KarbonPayment
KarbonPayment
Delete Manual Payment
If a Manual Payment has been recorded and needs to be deleted you can now request this by calling
DELETE /v3/ManualPayments/{ManualPaymentsKey}
Invoice list optimisation
The Invoices API performance has been improved in cases where large numbers of invoices will be returned
GET /v3/Invoices
Please note that as a result we have removed the ability to use
=LineItems
GET /v3/Invoices/{InvoiceKey}$expand=LineItems,Payments