Kreditor anlegen
Legt einen neuen Kreditor (Lieferant) an. Optionales Standardkonto muss im Kontenplan existieren. Doppelte USt-IdNr. werden abgelehnt.
create_vendor
Authorization
Authorization string header erforderlich API-Key im Format
ll_.... Übergabe als Bearer Token im OAuth-Flow. Scopes
kreditoren:write
Parameter
name string erforderlich Name des Kreditors (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-Aufwandskonto (muss im Kontenplan existieren)
address object optional Adresse mit street, city, zip, country
notes string optional Freitext-Notizen (max 2000)
Antwort
200
Erfolgreich
MCP
JSON create_vendor {
"tool": "create_vendor",
"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
}