POST api/Account/applicant/register

Request Information

URI Parameters

None.

Body Parameters

ApplicantRegistrationDTOW
NameDescriptionTypeAdditional information
firstname

string

Required

surname

string

Required

email_address

string

Required

mobile_number

string

Required

password

string

Required

String length: inclusive between 6 and 100

confirmpassword

string

Required

request_id

string

None.

Request Formats

application/json, text/json

Sample:
{
  "firstname": "sample string 1",
  "surname": "sample string 2",
  "email_address": "sample string 3",
  "mobile_number": "sample string 4",
  "password": "sample string 5",
  "confirmpassword": "sample string 6",
  "request_id": "sample string 7"
}

application/xml, text/xml

Sample:
<ApplicantRegistrationDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngagePublicAPI.Core.DTOs.Writeable">
  <confirmpassword>sample string 6</confirmpassword>
  <email_address>sample string 3</email_address>
  <firstname>sample string 1</firstname>
  <mobile_number>sample string 4</mobile_number>
  <password>sample string 5</password>
  <request_id>sample string 7</request_id>
  <surname>sample string 2</surname>
</ApplicantRegistrationDTOW>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.