POST api/users/singup
Request Information
URI Parameters
None.
Body Parameters
UsersSignUpDTO| Name | Description | Type | Additional 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 |
|
| 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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.