LedgerLou Docs is optimized for desktop.

Please open this page on a device with a wider screen.

Bank

Get evidence of a transaction

Returns the stored evidence (document ID or external URL) for a bank transaction.

GET /v1/bank-transactions/:id/evidence
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token.
Responses
200
Success
400
INVALID_INPUT Required fields are missing or values do not match the expected format.
404
NOT_FOUND The requested resource was not found.
GET /v1/bank-transactions/:id/evidence
cURL
-cmd">curl --request -method">GET -punct">\
  --url 'https://api.ledgerlou.de/v1/bank-transactions/:id/evidence' -punct">\
  --header 'Authorization: Bearer ll_your_key'
200 Response
JSON
Returns `null` when no evidence is present.
{
  "evidence": {
    "id": "<string>",
    "evidence_type": "<string>",
    "title": "<string>",
    "note": null,
    "document_id": null
  }
}