POST api/login/Register
Request Information
URI Parameters
None.
Body Parameters
RegistRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
None. |
|
| password | string |
None. |
|
| inviteCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userId": "sample string 1",
"password": "sample string 2",
"inviteCode": "sample string 3"
}
application/xml, text/xml
Sample:
<RegistRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers"> <inviteCode>sample string 3</inviteCode> <password>sample string 2</password> <userId>sample string 1</userId> </RegistRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/plain
Sample:
Sample not available.
Response Information
Resource Description
ResultMsg| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"code": 3
}
application/xml, text/xml
Sample:
<ResultMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.Model"> <Code>3</Code> <Message>sample string 2</Message> <Success>true</Success> </ResultMsg>