Debitoren auflisten
Listet alle Debitoren des Mandanten mit optionaler Suche und Aktivfilter. Jeder Eintrag enthaelt den aggregierten offenen Betrag.
list_customers
Authorization
Authorization string header erforderlich API-Key im Format
ll_.... Übergabe als Bearer Token im OAuth-Flow. Scopes
debitoren:read
Parameter
search string optional Freitextsuche in Name und USt-IdNr.
is_active boolean optional Nur aktive (true) oder inaktive (false) Debitoren
limit number optional Max. Ergebnisse (1–500, Default: 50)
offset number optional Offset fuer Paginierung (Default: 0)
Antwort
200
Erfolgreich
MCP
JSON list_customers {
"tool": "list_customers",
"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
}
]