LedgerLou Docs is optimized for desktop.

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

Payables · AP invoices

Get AP invoice

Returns a single AP invoice by its ID — including line items, computed status and remaining amount.

get_invoice
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token in the OAuth flow.
Scopes
kreditoren:read
Parameters
invoice_id string (uuid) required UUID of the invoice
Response
200
Success
MCP get_invoice
JSON
{
  "tool": "get_invoice",
  "params": {
    "invoice_id": "<string>"
  }
}
200 Response
JSON
{
  "id": "<string>",
  "vendor_name": "<string>",
  "invoice_number": "<string>",
  "total_gross": 1,
  "status": "<string>",
  "remaining_amount": 1,
  "lines": [
    {
      "position": 1,
      "description": "<string>",
      "quantity": 1,
      "unit_price": 1,
      "tax_rate": 1,
      "line_total": 1
    }
  ]
}