POST api/Mobile/Logout
Request Information
URI Parameters
None.
Body Parameters
SignRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| Phone | string |
None. |
|
| Password | string |
None. |
|
| ClassID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"eMail": "sample string 1",
"Phone": "sample string 2",
"Password": "sample string 3",
"ClassID": "sample string 4"
}
application/xml, text/xml
Sample:
<MobileController.SignRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomerAPI.Controllers"> <ClassID>sample string 4</ClassID> <Password>sample string 3</Password> <Phone>sample string 2</Phone> <eMail>sample string 1</eMail> </MobileController.SignRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| Error | string |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"Error": "sample string 2",
"ID": 3
}
application/xml, text/xml
Sample:
<MobileController.APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomerAPI.Controllers"> <Error>sample string 2</Error> <ID>3</ID> <success>true</success> </MobileController.APIResponse>