LedgerLou Docs is optimized for desktop.

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

Payables · Vendors

List vendors

Lists all vendors of the tenant with optional search and active filter. Each entry includes the aggregated open amount.

list_vendors
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token in the OAuth flow.
Scopes
kreditoren:read
Parameters
search string optional Free-text search over name and VAT ID
is_active boolean optional Only active (true) or inactive (false) vendors
limit number optional Max results (1–500, default: 50)
offset number optional Offset for pagination (default: 0)
Response
200
Success
MCP list_vendors
JSON
{
  "tool": "list_vendors",
  "params": {
    "search": "<string>",
    "is_active": true,
    "limit": 1,
    "offset": 1
  }
}
200 Response
JSON
[
  {
    "id": "<string>",
    "name": "<string>",
    "vat_id": "<string>",
    "is_active": true,
    "open_amount": 1
  }
]