Description

Revoke an issued OAuth 2.0 token.

Parameters

Parameter Type Description Required
token String Token to be revoked true
client_id String Client ID value true
client_secret String Client secret value true

Example

Sample Request

curl \
-X POST \
-H "Content-Type: application/json" \
-d '{
        "token": "token12345",
        "client_id": "12345",
        "client_secret": "67890"
    }' \
https://simpleloyalty.com/oauth/revoke

This API returns HTTP Status 200 on successful token revoke.