GET api/OperaAccount/GetByLastUpdatedOnDate?date={date}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| date | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Account| Name | Description | Type | Additional information |
|---|---|---|---|
| OperaAccount | string |
None. |
|
| Name | string |
None. |
|
| Active | boolean |
None. |
|
| ActiveServiceContract | boolean |
None. |
|
| LastUpdatedOnDate | date |
None. |
|
| SendOverdueInspectionEmail | boolean |
None. |
|
| CashSalesAccount | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OperaAccount": "sample string 1",
"Name": "sample string 2",
"Active": true,
"ActiveServiceContract": true,
"LastUpdatedOnDate": "2025-12-06T02:34:52.1653441+00:00",
"SendOverdueInspectionEmail": true,
"CashSalesAccount": true
},
{
"OperaAccount": "sample string 1",
"Name": "sample string 2",
"Active": true,
"ActiveServiceContract": true,
"LastUpdatedOnDate": "2025-12-06T02:34:52.1653441+00:00",
"SendOverdueInspectionEmail": true,
"CashSalesAccount": true
}
]
application/xml, text/xml
Sample:
<ArrayOfAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMHEntities">
<Account>
<Active>true</Active>
<ActiveServiceContract>true</ActiveServiceContract>
<CashSalesAccount>true</CashSalesAccount>
<LastUpdatedOnDate>2025-12-06T02:34:52.1653441+00:00</LastUpdatedOnDate>
<Name>sample string 2</Name>
<OperaAccount>sample string 1</OperaAccount>
<SendOverdueInspectionEmail>true</SendOverdueInspectionEmail>
</Account>
<Account>
<Active>true</Active>
<ActiveServiceContract>true</ActiveServiceContract>
<CashSalesAccount>true</CashSalesAccount>
<LastUpdatedOnDate>2025-12-06T02:34:52.1653441+00:00</LastUpdatedOnDate>
<Name>sample string 2</Name>
<OperaAccount>sample string 1</OperaAccount>
<SendOverdueInspectionEmail>true</SendOverdueInspectionEmail>
</Account>
</ArrayOfAccount>