POST user/reg
Request Information
URI Parameters
None.
Body Parameters
RegisterRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| mobile | string |
Required Matching regular expression pattern: 1[3578]\d{9} |
|
| nick | string |
Max length: 15 Min length: 1 |
|
| pwd | string |
Max length: 20 Min length: 6 |
|
| repeat | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"mobile": "sample string 1",
"nick": "sample string 2",
"pwd": "sample string 3",
"repeat": "sample string 4"
}
application/xml, text/xml
Sample:
<RegisterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iting.api.Models"> <mobile>sample string 1</mobile> <nick>sample string 2</nick> <pwd>sample string 3</pwd> <repeat>sample string 4</repeat> </RegisterRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseEntityOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| msg | string |
None. |
|
| data | boolean |
None. |
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.