GET api/Invoices?contractId={contractId}&startDate={startDate}&endDate={endDate}
Fetch all invoice amounts for the specified contract and time interval
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| contractId | integer |
Required |
|
| startDate | date |
Required |
|
| endDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InvoiceAmount| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | decimal number |
None. |
|
| Date | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Amount": 1.1,
"Date": "2025-12-08T14:27:02.1520854+00:00"
},
{
"Amount": 1.1,
"Date": "2025-12-08T14:27:02.1520854+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfInvoiceAmount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
<InvoiceAmount>
<Amount>1.1</Amount>
<Date>2025-12-08T14:27:02.1520854+00:00</Date>
</InvoiceAmount>
<InvoiceAmount>
<Amount>1.1</Amount>
<Date>2025-12-08T14:27:02.1520854+00:00</Date>
</InvoiceAmount>
</ArrayOfInvoiceAmount>
