POST student/SignOut
Request Information
URI Parameters
None.
Body Parameters
SignOutDto| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceToken | string |
None. |
|
| PlatformId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceToken": "sample string 1",
"PlatformId": "sample string 2"
}
text/html
Sample:
{"DeviceToken":"sample string 1","PlatformId":"sample string 2"}
application/xml, text/xml
Sample:
<SignOutDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL.Dtos.StudentPlatforms"> <DeviceToken>sample string 1</DeviceToken> <PlatformId>sample string 2</PlatformId> </SignOutDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2"
}
text/html
Sample:
{"IsSuccess":true,"Message":"sample string 2"}
application/xml, text/xml
Sample:
<ResultDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PlatformAPIs.DAL.Dtos"> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> </ResultDto>