POST api/users/singup

Request Information

URI Parameters

None.

Body Parameters

UsersSignUpDTO
NameDescriptionTypeAdditional information
username

string

Required

String length: inclusive between 0 and 100

password

string

Required

String length: inclusive between 0 and 100

name

string

Required

String length: inclusive between 0 and 250

email

string

Required

String length: inclusive between 0 and 250

Request Formats

application/json, text/json

Sample:
{
  "username": "sample string 1",
  "password": "sample string 2",
  "name": "sample string 3",
  "email": "sample string 4"
}

application/xml, text/xml

Sample:
<UsersSignUpDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models.DTO">
  <email>sample string 4</email>
  <name>sample string 3</name>
  <password>sample string 2</password>
  <username>sample string 1</username>
</UsersSignUpDTO>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.