GET Notification/GetHistoryData?DonorId={DonorId}
Get History Data
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DonorId |
Donor Id in Aversys |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of History records
Collection of HistoryData| Name | Description | Type | Additional information |
|---|---|---|---|
| TestingDate |
Date |
date |
None. |
| IsScheduled |
Is Scheduled |
boolean |
None. |
| IsResponded |
Is User Responded |
boolean |
None. |
| IsExcused |
Is Donor Excused |
boolean |
None. |
| IsRequiredToCall |
Is Donor RequiredToCall |
boolean |
None. |
| ProgramCustomMessage | string |
None. |
|
| DonorCustomMessage | string |
None. |
|
| CallDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TestingDate": "2025-12-13T20:19:14.7462126+00:00",
"IsScheduled": true,
"IsResponded": true,
"IsExcused": true,
"IsRequiredToCall": true,
"ProgramCustomMessage": "sample string 4",
"DonorCustomMessage": "sample string 5",
"CallDateTime": "2025-12-13T20:19:14.7462126+00:00"
},
{
"TestingDate": "2025-12-13T20:19:14.7462126+00:00",
"IsScheduled": true,
"IsResponded": true,
"IsExcused": true,
"IsRequiredToCall": true,
"ProgramCustomMessage": "sample string 4",
"DonorCustomMessage": "sample string 5",
"CallDateTime": "2025-12-13T20:19:14.7462126+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfHistoryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avertest.Mobile.API.Models.Notification">
<HistoryData>
<CallDateTime>2025-12-13T20:19:14.7462126+00:00</CallDateTime>
<DonorCustomMessage>sample string 5</DonorCustomMessage>
<ProgramCustomMessage>sample string 4</ProgramCustomMessage>
</HistoryData>
<HistoryData>
<CallDateTime>2025-12-13T20:19:14.7462126+00:00</CallDateTime>
<DonorCustomMessage>sample string 5</DonorCustomMessage>
<ProgramCustomMessage>sample string 4</ProgramCustomMessage>
</HistoryData>
</ArrayOfHistoryData>
