Get payment run
Retrieves a single payment run with all its items including denormalized vendor IBAN and name.
get_payment_run
Authorization
Authorization string header required API key in the format
ll_.... Pass as a Bearer token in the OAuth flow. Scopes
kreditoren:read
Parameters
payment_run_id string (uuid) required UUID of the payment run
Response
200
Success
MCP
JSON get_payment_run {
"tool": "get_payment_run",
"params": {
"payment_run_id": "<string>"
}
} 200 Response
JSON {
"id": "<string>",
"status": "<string>",
"execution_date": "<string>",
"total_amount": 1,
"items": [
{
"invoice_id": "<string>",
"invoice_number": "<string>",
"vendor_name": "<string>",
"vendor_iban": "<string>",
"amount": 1
}
]
}