Skip to main content
POST
/
invoices
/
reconcile-with-integration
Reconcile invoices with external integration
curl --request POST \
  --url https://eu.sequencehq.com/api/invoices/reconcile-with-integration \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "integrationService": "Xero",
  "invoiceIds": [],
  "propertiesToCompare": [
    "INVOICE_NUMBER",
    "STATUS"
  ]
}
'
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
integrationService
enum<string>
required

Integration service

Available options:
Xero
Example:

"Xero"

invoiceIds
string[]
required

Invoice IDs

Example:
[]
propertiesToCompare
enum<string>[]
required

Property to compare

Available options:
INVOICE_NUMBER,
STATUS
Example:
["INVOICE_NUMBER", "STATUS"]

Response