GET Notification/GetHistoryData?DonorId={DonorId}

Get History Data

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DonorId

Donor Id in Aversys

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of History records

Collection of HistoryData
NameDescriptionTypeAdditional 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": "2024-11-14T15:00:23.6998121+00:00",
    "IsScheduled": true,
    "IsResponded": true,
    "IsExcused": true,
    "IsRequiredToCall": true,
    "ProgramCustomMessage": "sample string 4",
    "DonorCustomMessage": "sample string 5",
    "CallDateTime": "2024-11-14T15:00:23.6998121+00:00"
  },
  {
    "TestingDate": "2024-11-14T15:00:23.6998121+00:00",
    "IsScheduled": true,
    "IsResponded": true,
    "IsExcused": true,
    "IsRequiredToCall": true,
    "ProgramCustomMessage": "sample string 4",
    "DonorCustomMessage": "sample string 5",
    "CallDateTime": "2024-11-14T15:00:23.6998121+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>2024-11-14T15:00:23.6998121+00:00</CallDateTime>
    <DonorCustomMessage>sample string 5</DonorCustomMessage>
    <ProgramCustomMessage>sample string 4</ProgramCustomMessage>
  </HistoryData>
  <HistoryData>
    <CallDateTime>2024-11-14T15:00:23.6998121+00:00</CallDateTime>
    <DonorCustomMessage>sample string 5</DonorCustomMessage>
    <ProgramCustomMessage>sample string 4</ProgramCustomMessage>
  </HistoryData>
</ArrayOfHistoryData>