POST users/current/oauth2/clear
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
JSONMessageResult| Name | Description | Type | Additional information |
|---|---|---|---|
| message | string |
None. |
|
| error | JSONErrorInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"message": "sample string 1",
"error": {
"code": 1,
"message": "sample string 2",
"description": [
"sample string 1",
"sample string 2"
]
}
}
multipart/form-data
Sample:
{"message":"sample string 1","error":{"code":1,"message":"sample string 2","description":["sample string 1","sample string 2"]}}
application/xml, text/xml
Sample:
<JSONMessageResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/rest_api.Models">
<Error>
<Code>1</Code>
<Description xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</Description>
<Message>sample string 2</Message>
</Error>
<Message>sample string 1</Message>
</JSONMessageResult>