POST api/Account/RegisterV2

Method differs from the method "Register" in the way it repports errors and also, it sends different welcome mails based on AppId

Request Information

Parameters

NameDescriptionAdditional information
model

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "Password": "sample string 2",
  "ConfirmPassword": "sample string 3",
  "ReciveNewsletter": true
}

application/xml, text/xml

Sample:
<RegisterV2BindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Boliga.Web.API.Models">
  <ConfirmPassword>sample string 3</ConfirmPassword>
  <Email>sample string 1</Email>
  <Password>sample string 2</Password>
  <ReciveNewsletter>true</ReciveNewsletter>
</RegisterV2BindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

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

Sample:

Sample not available.