GET api/Membership/ModifiedMembers/{startDate}/{endDate}
Loads a list of all member modifications within a date range.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
startDate |
The date to start the search range from. |
date |
Required |
endDate |
The date to finish the search range on. |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[{"memberNumber":"","email":"","personRef":"","masterOrJoint":"","lastModified":"0001-01-01T00:00:00"}]
application/xml, text/xml
Sample:
<?xml version="1.0" encoding="utf-16"?> <ModifiedMembers xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <APIModifiedMember> <memberNumber /> <email /> <personRef /> <masterOrJoint /> <lastModified>0001-01-01T00:00:00</lastModified> </APIModifiedMember> </ModifiedMembers>