GET api/ChangedContacts?modifiedDate={modifiedDate}&take={take}&skip={skip}
Retrieve Contacts with a modified date on or after the specified modified date.
Possible Service Responses:
200/OK - match found and list of contact records are in the body of the response.
404/Contacts Not Found - no contacts 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 |
take |
Maximum number of records to return. |
System.Int32 |
Required |
skip |
Number of records to skip, used for paging data. |
System.Int32 |
Required |
Body Parameters
None.
Response Information
Resource Description
List of ChangedContact
System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.ChangedContact]Name | Description | Type | Additional information |
---|---|---|---|
Id | System.String |
None. |
|
ModifiedOn | System.String |
None. |
|
PortalId | System.String |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "sample string 1", "ModifiedOn": "sample string 2", "PortalId": "sample string 3" }, { "Id": "sample string 1", "ModifiedOn": "sample string 2", "PortalId": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfChangedContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models"> <ChangedContact> <Id>sample string 1</Id> <ModifiedOn>sample string 2</ModifiedOn> <PortalId>sample string 3</PortalId> </ChangedContact> <ChangedContact> <Id>sample string 1</Id> <ModifiedOn>sample string 2</ModifiedOn> <PortalId>sample string 3</PortalId> </ChangedContact> </ArrayOfChangedContact>