v1
latestOpenAPI 3.0.12026-07-243686491.1 MBInvoices
Retrieves a list of invoices by walletId
Required scope: invoices:read
get/api/v1/invoices
Query parameters
pageinteger
page number to retrieve (starts with 0)
perPageinteger
number of items per page (between 1 and 100, default 10)
walletIdinteger required
Response
Invoices successfully retrieved
Example response
{
"data": [
{
"id": 123,
"displayNumber": "3508-2026-6577",
"walletId": 123,
"from": "2024-03-01T00:00:00Z",
"to": "2024-03-30T00:00:00Z",
"approvedAt": "2024-03-30T00:00:00Z",
"totalStatement": 12.22,
"totalPayableBalance": 12.22,
"currency": {
"id": 1,
"identifier": "DKK",
"name": "Danish krone",
"decimals": 2
},
"status": "paid",
"createdAt": "2024-03-30T00:00:00Z",
"dueAt": "2024-03-30T00:00:00Z",
"pdfUrl": "https://monta.imgix.net/production/wallet/invoices/xyxy.pdf"
}
]
}