POST api/Account/Create

Register/Create new user

Request Information

URI Parameters

None.

Body Parameters

RegisterBindingModel
NameDescriptionTypeAdditional information
Username

User name

string

Required

ProviderURL

Associated provider (RTO) URL

string

Required

AppAccessToken

Application access token

string

Required

Email

Email address

string

Required

Password

Password

string

Required

Data type: Password

String length: inclusive between 3 and 100

ConfirmPassword

Confirm password

string

Data type: Password

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "ProviderURL": "sample string 2",
  "AppAccessToken": "sample string 3",
  "Email": "sample string 4",
  "Password": "sample string 5",
  "ConfirmPassword": "sample string 6"
}

application/xml, text/xml

Sample:
<RegisterBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileApp_WebAPI.Models">
  <AppAccessToken>sample string 3</AppAccessToken>
  <ConfirmPassword>sample string 6</ConfirmPassword>
  <Email>sample string 4</Email>
  <Password>sample string 5</Password>
  <ProviderURL>sample string 2</ProviderURL>
  <Username>sample string 1</Username>
</RegisterBindingModel>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.