Skip to main content
GET
/
accounting
/
payables
Get payables list from accounting system
curl --request GET \
  --url https://api.sandbox.monite.com/v1/accounting/payables \
  --header 'Authorization: Bearer <token>' \
  --header 'x-monite-entity-id: <x-monite-entity-id>' \
  --header 'x-monite-version: <x-monite-version>'
{
  "data": [
    {
      "id": "<string>",
      "status": "paid",
      "total_amount": 123,
      "amount_due": 123,
      "currency": "EUR",
      "currency_rate": 123,
      "due_date": "2023-11-07T05:31:56Z",
      "invoice_number": "<string>",
      "lines": [
        {
          "description": "Logo design",
          "discount_amount": 123,
          "discount_percentage": 123,
          "ledger_account_id": "<string>",
          "quantity": 123,
          "tax_rate_ref": {
            "id": "<string>"
          },
          "unit_amount": 123
        }
      ],
      "memo": "<string>",
      "posted_date": "2023-12-25",
      "purchase_order_refs": [
        {
          "id": "10",
          "name": "PO-1234"
        }
      ],
      "subtotal": 123,
      "tax_amount": 123,
      "vendor_ref": {
        "id": "120",
        "name": "Acme Inc."
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-monite-version
string<date>
required
x-monite-entity-id
string<uuid>
required

The ID of the entity that owns the requested resource.

Example:

"9d2b4c8f-2087-4738-ba91-7359683c49a4"

Query Parameters

limit
integer
default:100

Number of results per page.

Required range: 1 <= x <= 500
offset
integer
default:0

Number of results to skip before selecting items to return.

Required range: x >= 0

Response

Successful Response

data
object[]
required