List payment runs
Lists payment runs with optional status filter and pagination. Statuses: draft, approved, exported, completed, cancelled.
list_payment_runs
Authorization
Authorization string header required API key in the format
ll_.... Pass as a Bearer token in the OAuth flow. Scopes
kreditoren:read
Parameters
status string optional Filter by status (draft, approved, exported, completed, cancelled)
limit number optional Max results (1–500, default: 100)
offset number optional Offset for pagination (default: 0)
Response
200
Success
MCP
JSON list_payment_runs {
"tool": "list_payment_runs",
"params": {
"status": "<string>",
"limit": 1,
"offset": 1
}
} 200 Response
JSON [
{
"id": "<string>",
"status": "<string>",
"execution_date": "<string>",
"total_amount": 1,
"item_count": 1,
"label": "<string>",
"created_at": "<string>"
}
]