List AR invoices
Lists AR invoices with optional filters by customer, status, type and time range. The status is computed server-side.
list_outgoing_invoices
Authorization
Authorization string header required API key in the format
ll_.... Pass as a Bearer token in the OAuth flow. Scopes
debitoren:read
Parameters
customer_id string (uuid) optional Filter by customer
status string optional draft, open, partially_paid, paid or overdue
type string optional invoice or credit_note
start_date string optional From invoice date (YYYY-MM-DD)
end_date string optional To invoice date (YYYY-MM-DD)
limit number optional Max results (1–500, default: 100)
offset number optional Offset for pagination (default: 0)
Response
200
Success
MCP
JSON list_outgoing_invoices {
"tool": "list_outgoing_invoices",
"params": {
"customer_id": "<string>",
"status": "<string>",
"type": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"limit": 1,
"offset": 1
}
} 200 Response
JSON [
{
"id": "<string>",
"customer_name": "<string>",
"invoice_number": "<string>",
"invoice_date": "<string>",
"total_gross": 1,
"type": "<string>",
"status": "<string>",
"remaining_amount": 1
}
]