POST api/{token}/Signup

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
context
No documentation available.

Define this parameter in the request body.

token
No documentation available.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "Company": "sample string 4",
  "Phone": "sample string 5",
  "InviteCode": "sample string 6"
}

application/xml, text/xml

Sample:
<SignupContext xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ThumbAPI.Models">
  <Company>sample string 4</Company>
  <Email>sample string 1</Email>
  <FirstName>sample string 2</FirstName>
  <InviteCode>sample string 6</InviteCode>
  <LastName>sample string 3</LastName>
  <Phone>sample string 5</Phone>
</SignupContext>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SignupContext'.