Skip to main content
POST
/
credit-note-applications
Apply a Credit Note to an Invoice
curl --request POST \
  --url https://eu.sequencehq.com/api/credit-note-applications \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "creditNoteId": "af60cab3-812d-4250-a051-0fb7133a00c7",
  "invoiceId": "61b083e0-1faa-47ca-9aeb-6205da8f6c47",
  "amount": 50,
  "currency": "USD",
  "creditNoteBalanceVersion": 3,
  "invoiceBalanceVersion": 7
}
'
This response has no body data.

Headers

Authorization
string
required

Your API credentials. Eg. Basic {credentials}.

sequence-version
enum<string>

Use this header to select an API version

Available options:
2024-07-30

Body

application/json
creditNoteId
string
required

The Credit Note to draw from

Example:

"af60cab3-812d-4250-a051-0fb7133a00c7"

invoiceId
string
required

The Invoice to apply credit to

Example:

"61b083e0-1faa-47ca-9aeb-6205da8f6c47"

amount
number
required

Amount to allocate from the Credit Note to the Invoice.

Example:

50

currency
enum<string>
required

Currency of the amount. Must match the Credit Note and Invoice currency.

Available options:
AED,
ARS,
AUD,
BRL,
BGN,
CAD,
CHF,
CLP,
CNY,
COP,
CZK,
DKK,
EGP,
EUR,
GBP,
HKD,
ILS,
INR,
ISK,
JPY,
KRW,
MXN,
NOK,
NZD,
PLN,
SAR,
SEK,
SGD,
THB,
USD,
UYU,
ZAR
Example:

"GBP"

creditNoteBalanceVersion
integer<int64>
required

Expected current balance version of the Credit Note (for OCC)

Example:

3

invoiceBalanceVersion
integer<int64>
required

Expected current balance version of the Invoice (for OCC)

Example:

7

Response