POST api/fundraisers/getAll

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Fundraiser
NameDescriptionTypeAdditional information
Fundraiser_ID

string

None.

Fundraiser_Type

boolean

None.

Fundraiser_Name

string

None.

Fundraiser_Area

string

None.

Members

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Fundraiser_ID": "sample string 1",
    "Fundraiser_Type": true,
    "Fundraiser_Name": "sample string 3",
    "Fundraiser_Area": "sample string 4",
    "Members": "sample string 5"
  },
  {
    "Fundraiser_ID": "sample string 1",
    "Fundraiser_Type": true,
    "Fundraiser_Name": "sample string 3",
    "Fundraiser_Area": "sample string 4",
    "Members": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFundraiser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL">
  <Fundraiser>
    <Fundraiser_Area>sample string 4</Fundraiser_Area>
    <Fundraiser_ID>sample string 1</Fundraiser_ID>
    <Fundraiser_Name>sample string 3</Fundraiser_Name>
    <Fundraiser_Type>true</Fundraiser_Type>
    <Members>sample string 5</Members>
  </Fundraiser>
  <Fundraiser>
    <Fundraiser_Area>sample string 4</Fundraiser_Area>
    <Fundraiser_ID>sample string 1</Fundraiser_ID>
    <Fundraiser_Name>sample string 3</Fundraiser_Name>
    <Fundraiser_Type>true</Fundraiser_Type>
    <Members>sample string 5</Members>
  </Fundraiser>
</ArrayOfFundraiser>