GET api/ChangedAccounts?modifiedDate={modifiedDate}
Retrieve Accounts with a modified date on or after the specified modified date.
Possible Service Responses:
200/OK - match found and list of account records are in the body of the response.
404/Accounts Not Found - no accounts modified on or after the specified date.
500/Internal Server - unexpected server error, details in the body of the response.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
modifiedDate |
DateTime |
System.DateTime |
Required |
Body Parameters
None.
Response Information
Resource Description
List of ChangedAccounts
System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.ChangedAccount]Name | Description | Type | Additional information |
---|---|---|---|
Id | System.String |
None. |
|
ModifiedOn | System.String |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "sample string 1", "ModifiedOn": "sample string 2" }, { "Id": "sample string 1", "ModifiedOn": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfChangedAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models"> <ChangedAccount> <Id>sample string 1</Id> <ModifiedOn>sample string 2</ModifiedOn> </ChangedAccount> <ChangedAccount> <Id>sample string 1</Id> <ModifiedOn>sample string 2</ModifiedOn> </ChangedAccount> </ArrayOfChangedAccount>