v1

latestOpenAPI 3.1.02026-07-24111224223.3 KB
Invoice payments

Lists payments for a given invoice

Returns every payment attempt tied to a single invoice, including successful, uncleared, and failed rows with their public status. Pair with retrieve-an-invoice when reconciling an account statement against what Rillet already applied.

get/invoices/{invoice_id}/payments

Path parameters

invoice_idstring uuid required

UUID of the invoice to be used in this operation.

Response

OK

Example response

{
  "payments": [
    {
      "amount": {
        "amount": "1.01",
        "currency": "USD"
      },
      "account_code": "11112"
    }
  ]
}