v1

latestOpenAPI 3.1.02026-07-24111224223.3 KB
Bill Payments

Lists bill payments

Enumerates disbursements recorded against a specific bill, useful when reconciling vendor statements to internal cash movements. Combine with retrieve-a-bill to understand remaining balance after each payment posts.

get/bills/{bill_id}/payments

Path parameters

bill_idstring uuid required

UUID of the bill to be used in this operation.

Response

OK

Example response

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