GET api/DonationTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DonationType
NameDescriptionTypeAdditional information
DonationTypeID

integer

None.

DonationType1

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DonationTypeID": 1,
    "DonationType1": "sample string 2"
  },
  {
    "DonationTypeID": 1,
    "DonationType1": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDonationType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/hhrd_usa_hhrdApi">
  <DonationType>
    <DonationType1>sample string 2</DonationType1>
    <DonationTypeID>1</DonationTypeID>
  </DonationType>
  <DonationType>
    <DonationType1>sample string 2</DonationType1>
    <DonationTypeID>1</DonationTypeID>
  </DonationType>
</ArrayOfDonationType>