LedgerLou Docs is optimized for desktop.

Please open this page on a device with a wider screen.

Payables

Get payment run

Returns a single payment run with all its items.

GET /v1/payment-runs/:id
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token.
Responses
200
Success
GET /v1/payment-runs/:id
cURL
-cmd">curl --request -method">GET -punct">\
  --url 'https://api.ledgerlou.de/v1/payment-runs/:id' -punct">\
  --header 'Authorization: Bearer ll_your_key'
200 Response
JSON
{
  "id": "<string>",
  "status": "<string>",
  "items": [
    {
      "id": "<string>",
      "invoice_id": "<string>",
      "vendor_name": "<string>",
      "vendor_iban": "<string>",
      "amount": "<string>",
      "reference": "<string>"
    }
  ]
}