GET api/InvoiceStatus/Changes?ChangeDate={ChangeDate}
Get invoicenumbers and their respective last change date
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ChangeDate |
only return results were changedate > then this date |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Array of InvoiceNumber and ChangeDate
Collection of InvoiceChanged| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceNumber | string |
None. |
|
| LastChanged | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InvoiceNumber": "sample string 1",
"LastChanged": "2025-12-06T05:13:47.0068924+01:00"
},
{
"InvoiceNumber": "sample string 1",
"LastChanged": "2025-12-06T05:13:47.0068924+01:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfInvoiceChanged xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<InvoiceChanged>
<InvoiceNumber>sample string 1</InvoiceNumber>
<LastChanged>2025-12-06T05:13:47.0068924+01:00</LastChanged>
</InvoiceChanged>
<InvoiceChanged>
<InvoiceNumber>sample string 1</InvoiceNumber>
<LastChanged>2025-12-06T05:13:47.0068924+01:00</LastChanged>
</InvoiceChanged>
</ArrayOfInvoiceChanged>