POST oauth/access_token/revoke
Revoke authorization token. Call to the endpoint revokes the same Token that the request is using
Requires authorization!
Response Codes
202
– Successfully accepted401
– User is not Authorized
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Revoke authorization token. Call to the endpoint revokes the same Token that the request is using
ApiResultName | Description | Type | Additional information |
---|---|---|---|
Success |
Indicates if the request was successfull or not.
|
boolean |
Required |
Errors |
Error(s) accociated with the API request. |
Collection of ApiError |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Errors": [ { "Code": 1, "Message": "sample string-2", "Details": "sample string-3" }, { "Code": 1, "Message": "sample string-2", "Details": "sample string-3" } ] }
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sobralaen.Api.Models"> <Errors> <ApiError> <Code>1</Code> <Details>sample string-3</Details> <Message>sample string-2</Message> </ApiError> <ApiError> <Code>1</Code> <Details>sample string-3</Details> <Message>sample string-2</Message> </ApiError> </Errors> <Success>true</Success> </ApiResult>