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 InvoiceDTOName | 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-05-06T13:45:52.0008692Z", "InvoicedDate": "2025-05-06T13:45:52.0008692Z" }, { "Id": "sample string 1", "Reference": "sample string 2", "Number": "sample string 3", "Amount": 4.0, "Status": 1, "DueDate": "2025-05-06T13:45:52.0008692Z", "InvoicedDate": "2025-05-06T13:45:52.0008692Z" } ]