POST Notification/CheckScheduling?DonorId={DonorId}&Language={Language}

Get Schedulilng Information by Donor Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DonorId

Donor Id in Aversys

integer

Required

Language

English or Spanish

string

Default value is English

Body Parameters

None.

Response Information

Resource Description

DonorModel
NameDescriptionTypeAdditional information
SchedulingMessage

Is Donor Scheduled or Not

string

None.

AdditionalInformation

Testing Location info, Confirmation Number

string

None.

DonorMessage

Donor Custom Message

string

None.

ProgramMessage

Program Custom Message

string

None.

Result

Result DonorNotFound / LineClosed / Scheduled / NotScheduled

string

None.

NotificationId

Confirmation Id

integer

None.

NotificationConfirmed

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "SchedulingMessage": "sample string 1",
  "AdditionalInformation": "sample string 2",
  "DonorMessage": "sample string 3",
  "ProgramMessage": "sample string 4",
  "Result": "DonorNotFound",
  "NotificationId": 1,
  "NotificationConfirmed": true
}

application/xml, text/xml

Sample:
<DonorModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avertest.Mobile.API.Models.Notification">
  <AdditionalInformation>sample string 2</AdditionalInformation>
  <DonorMessage>sample string 3</DonorMessage>
  <NotificationConfirmed>true</NotificationConfirmed>
  <NotificationId>1</NotificationId>
  <ProgramMessage>sample string 4</ProgramMessage>
  <SchedulingMessage>sample string 1</SchedulingMessage>
</DonorModel>