POST api/userinfo/saveuserregistration

Request Information

URI Parameters

None.

Body Parameters

UserRegister
NameDescriptionTypeAdditional information
Username

string

None.

Name

string

None.

Email

string

None.

MobileNo

string

None.

Country

string

None.

Password

string

None.

SponserID

string

None.

Address

string

None.

WalletAddress

string

None.

AgreeToTerms

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Name": "sample string 2",
  "Email": "sample string 3",
  "MobileNo": "sample string 4",
  "Country": "sample string 5",
  "Password": "sample string 6",
  "SponserID": "sample string 7",
  "Address": "sample string 8",
  "WalletAddress": "sample string 9",
  "AgreeToTerms": "sample string 10"
}

application/xml, text/xml

Sample:
<UserRegister xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaveLabsAPI.Controllers">
  <Address>sample string 8</Address>
  <AgreeToTerms>sample string 10</AgreeToTerms>
  <Country>sample string 5</Country>
  <Email>sample string 3</Email>
  <MobileNo>sample string 4</MobileNo>
  <Name>sample string 2</Name>
  <Password>sample string 6</Password>
  <SponserID>sample string 7</SponserID>
  <Username>sample string 1</Username>
  <WalletAddress>sample string 9</WalletAddress>
</UserRegister>

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 'UserRegister'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.