GET api/DONATION_Notification/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

DONATION_Notification
NameDescriptionTypeAdditional information
NotificationId

globally unique identifier

None.

Donor_ID

integer

None.

email

string

None.

TotalAmount

decimal number

None.

Transaction_ID

string

None.

Ref_Number

string

None.

EnteredDate

date

None.

Issue_date

date

None.

reminder1

boolean

None.

reminder1Date

date

None.

reminder2

boolean

None.

reminder2Date

date

None.

ContactedDonor

boolean

None.

ContactedDonorDate

date

None.

CreatedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "NotificationId": "7d7b49ea-f0e7-4c76-8dc0-7af6a8c8cfb5",
  "Donor_ID": 2,
  "email": "sample string 3",
  "TotalAmount": 1.0,
  "Transaction_ID": "sample string 4",
  "Ref_Number": "sample string 5",
  "EnteredDate": "2026-06-30T23:19:13.3147501-07:00",
  "Issue_date": "2026-06-30T23:19:13.3147501-07:00",
  "reminder1": true,
  "reminder1Date": "2026-06-30T23:19:13.3147501-07:00",
  "reminder2": true,
  "reminder2Date": "2026-06-30T23:19:13.3147501-07:00",
  "ContactedDonor": true,
  "ContactedDonorDate": "2026-06-30T23:19:13.3147501-07:00",
  "CreatedDate": "2026-06-30T23:19:13.3147501-07:00"
}

application/xml, text/xml

Sample:
<DONATION_Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/hhrd_usa_hhrdApi">
  <ContactedDonor>true</ContactedDonor>
  <ContactedDonorDate>2026-06-30T23:19:13.3147501-07:00</ContactedDonorDate>
  <CreatedDate>2026-06-30T23:19:13.3147501-07:00</CreatedDate>
  <Donor_ID>2</Donor_ID>
  <EnteredDate>2026-06-30T23:19:13.3147501-07:00</EnteredDate>
  <Issue_date>2026-06-30T23:19:13.3147501-07:00</Issue_date>
  <NotificationId>7d7b49ea-f0e7-4c76-8dc0-7af6a8c8cfb5</NotificationId>
  <Ref_Number>sample string 5</Ref_Number>
  <TotalAmount>1</TotalAmount>
  <Transaction_ID>sample string 4</Transaction_ID>
  <email>sample string 3</email>
  <reminder1>true</reminder1>
  <reminder1Date>2026-06-30T23:19:13.3147501-07:00</reminder1Date>
  <reminder2>true</reminder2>
  <reminder2Date>2026-06-30T23:19:13.3147501-07:00</reminder2Date>
</DONATION_Notification>