Eingangsbelege auflisten
Listet Belege aus dem E-Mail-Eingang auf, inklusive OCR-Extraktion, Lieferantenzuordnung und UStG §14 Pflichtangaben-Prüfung. Standardmäßig werden nur ausstehende (pending) Belege zurückgegeben.
GET
/v1/inbox Authorization
Authorization string header erforderlich API-Key im Format
ll_.... Übergabe als Bearer Token. Query-Parameter
status string optional Filtert nach Status: pending, processing, confirmed, rejected. Standard: pending
limit integer optional Maximale Anzahl Ergebnisse (1–200). Standard: 50
offset integer optional Offset für Paginierung. Standard: 0
Antworten
200
Erfolgreich
GET
cURL /v1/inbox -cmd">curl --request -method">GET -punct">\
--url 'https://api.ledgerlou.de/v1/inbox' -punct">\
--header 'Authorization: Bearer ll_your_key' 200 Response
JSON [
{
"id": "<string>",
"document_id": "<string>",
"status": "<string>",
"ocr_extraction": {
"vendor_name": "<string>",
"total_gross": 1
},
"vendor_match": {
"status": "<string>",
"vendor_id": "<string>",
"confidence": 1,
"match_method": "<string>"
},
"compliance_check": {
"document_type": "<string>",
"is_invoice": true,
"compliant": true,
"passed": 1,
"total": 1,
"checks": [
{
"rule": "<string>",
"label": "<string>",
"status": "<string>"
}
]
},
"source_email": "<string>",
"source_subject": "<string>",
"original_name": "<string>",
"created_at": "<string>"
}
]