POST api/fundraisers/insert

Request Information

URI Parameters

None.

Body Parameters

Fundraiser
NameDescriptionTypeAdditional information
Fundraiser_ID

string

None.

Fundraiser_Type

boolean

None.

Fundraiser_Name

string

None.

Fundraiser_Area

string

None.

Members

string

None.

Request 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"
}

application/xml, text/xml

Sample:
<Fundraiser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL">
  <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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>