LedgerLou Docs ist für Desktop optimiert.

Bitte öffne diese Seite auf einem Gerät mit breiterem Bildschirm.

Debitoren · Debitoren (Kunden)

Debitor anlegen

Legt einen neuen Debitor (Kunde) an. Optionales Standardkonto muss im Kontenplan existieren. Doppelte USt-IdNr. werden abgelehnt.

create_customer
Authorization
Authorization string header erforderlich API-Key im Format ll_.... Übergabe als Bearer Token im OAuth-Flow.
Scopes
debitoren:write
Parameter
name string erforderlich Name des Debitors (max 255)
vat_id string optional USt-IdNr. (max 20)
tax_id string optional Steuernummer (max 20)
iban string optional IBAN (max 34)
bic string optional BIC (max 11)
default_account string optional Standard-Erloeskonto (muss im Kontenplan existieren)
address object optional Adresse mit street, city, zip, country
notes string optional Freitext-Notizen (max 2000)
Antwort
200
Erfolgreich
MCP create_customer
JSON
{
  "tool": "create_customer",
  "params": {
    "name": "<string>",
    "vat_id": "<string>",
    "iban": "<string>",
    "default_account": "<string>"
  }
}
200 Response
JSON
{
  "id": "<string>",
  "name": "<string>",
  "vat_id": "<string>",
  "iban": "<string>",
  "default_account": "<string>",
  "is_active": true
}