LedgerLou Docs ist für Desktop optimiert.

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

Kreditoren

Eingangsbeleg-Details abrufen

Gibt einen einzelnen Eingangsbeleg zurück, inklusive vollständiger OCR-Extraktion, Roh-OCR-Markdown, Lieferantenzuordnung und UStG §14 Pflichtangaben-Prüfung.

GET /v1/inbox/:id
Authorization
Authorization string header erforderlich API-Key im Format ll_.... Übergabe als Bearer Token.
Antworten
200
Erfolgreich
GET /v1/inbox/:id
cURL
-cmd">curl --request -method">GET -punct">\
  --url 'https://api.ledgerlou.de/v1/inbox/:id' -punct">\
  --header 'Authorization: Bearer ll_your_key'
200 Response
JSON
{
  "id": "<string>",
  "document_id": "<string>",
  "status": "<string>",
  "ocr_extraction": {
    "vendor_name": "<string>",
    "invoice_number": "<string>",
    "total_gross": 1
  },
  "ocr_raw": "<string>",
  "vendor_match": {
    "status": "<string>",
    "vendor_id": "<string>",
    "confidence": 1
  },
  "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>"
}