POST api/registeruser

Request Information

URI Parameters

None.

Body Parameters

NewUser
NameDescriptionTypeAdditional information
Firstname

string

None.

Lastname

string

None.

Email

string

None.

Password

string

None.

DeviceIdentifier

string

None.

VerifyLink

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Firstname": "sample string 1",
  "Lastname": "sample string 2",
  "Email": "sample string 3",
  "Password": "sample string 4",
  "DeviceIdentifier": "sample string 5",
  "VerifyLink": "sample string 6"
}

application/xml, text/xml

Sample:
<NewUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VerweyWebApi.Services.Authentication.Models">
  <DeviceIdentifier>sample string 5</DeviceIdentifier>
  <Email>sample string 3</Email>
  <Firstname>sample string 1</Firstname>
  <Lastname>sample string 2</Lastname>
  <Password>sample string 4</Password>
  <VerifyLink>sample string 6</VerifyLink>
</NewUser>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.