GET api/clients/invoices/{pageNr}/{pageSize}?clientId={clientId}
Get client invoices
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNr |
Page number |
integer |
Required |
| pageSize |
Offset |
integer |
Required |
| clientId | string |
None. |
Body Parameters
None.
Response Information
Resource Description
List of invoices
Collection of InvoiceDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Reference | string |
None. |
|
| Number | string |
None. |
|
| Amount | decimal number |
None. |
|
| Status | InvoiceStatus |
None. |
|
| DueDate | date |
None. |
|
| InvoicedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"Reference": "sample string 2",
"Number": "sample string 3",
"Amount": 4.0,
"Status": 1,
"DueDate": "2025-11-06T20:34:50.6963931Z",
"InvoicedDate": "2025-11-06T20:34:50.6963931Z"
},
{
"Id": "sample string 1",
"Reference": "sample string 2",
"Number": "sample string 3",
"Amount": 4.0,
"Status": 1,
"DueDate": "2025-11-06T20:34:50.6963931Z",
"InvoicedDate": "2025-11-06T20:34:50.6963931Z"
}
]