Eingangsrechnung abrufen
Gibt eine einzelne Eingangsrechnung anhand ihrer ID zurück — inklusive Positionen, berechneter Status und Restbetrag.
get_invoice
Authorization
Authorization string header erforderlich API-Key im Format
ll_.... Übergabe als Bearer Token im OAuth-Flow. Scopes
kreditoren:read
Parameter
invoice_id string (uuid) erforderlich UUID der Rechnung
Antwort
200
Erfolgreich
MCP
JSON get_invoice {
"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
}
]
}