POST api/ms/authen/signup

Sign Up

Request Information

URI Parameters

None.

Body Parameters

m_customer_create
NameDescriptionTypeAdditional information
CustomerUsername

string

String length: inclusive between 0 and 200

CustomerFirstName

string

String length: inclusive between 0 and 100

CustomerLastName

string

String length: inclusive between 0 and 100

CustomerEmail

string

Required

String length: inclusive between 0 and 100

CustomerCountryCode

string

Required

String length: inclusive between 0 and 10

CustomerPhoneNo

string

Required

String length: inclusive between 0 and 20

CustomerPassword

string

Required

String length: inclusive between 0 and 255

Request Formats

application/json, text/json

Sample:
{
  "CustomerUsername": "sample string 1",
  "CustomerFirstName": "sample string 2",
  "CustomerLastName": "sample string 3",
  "CustomerEmail": "sample string 4",
  "CustomerCountryCode": "sample string 5",
  "CustomerPhoneNo": "sample string 6",
  "CustomerPassword": "sample string 7"
}

application/xml, text/xml

Sample:
<m_customer_create xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Project.Modules.Models.Mainsystem">
  <CustomerCountryCode>sample string 5</CustomerCountryCode>
  <CustomerEmail>sample string 4</CustomerEmail>
  <CustomerFirstName>sample string 2</CustomerFirstName>
  <CustomerLastName>sample string 3</CustomerLastName>
  <CustomerPassword>sample string 7</CustomerPassword>
  <CustomerPhoneNo>sample string 6</CustomerPhoneNo>
  <CustomerUsername>sample string 1</CustomerUsername>
</m_customer_create>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.