POST api/Members
Request Information
URI Parameters
None.
Body Parameters
MembershipApplication| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| StreetAddress | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| Postcode | string |
None. |
|
| CountryCode | string |
None. |
|
| string |
None. |
||
| Phone | string |
None. |
|
| AboutYourself | string |
None. |
|
| RulesAccepted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"StreetAddress": "sample string 3",
"City": "sample string 4",
"State": "sample string 5",
"Postcode": "sample string 6",
"CountryCode": "sample string 7",
"Email": "sample string 8",
"Phone": "sample string 9",
"AboutYourself": "sample string 10",
"RulesAccepted": true
}
application/xml, text/xml
Sample:
<MembershipApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DingoConservancy.API"> <AboutYourself>sample string 10</AboutYourself> <City>sample string 4</City> <CountryCode>sample string 7</CountryCode> <Email>sample string 8</Email> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <Phone>sample string 9</Phone> <Postcode>sample string 6</Postcode> <RulesAccepted>true</RulesAccepted> <State>sample string 5</State> <StreetAddress>sample string 3</StreetAddress> </MembershipApplication>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.