Token Revocation Endpoint
Revokes an access token or refresh token
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/x-www-form-urlencoded
Request Code Samples
curl --location --request POST 'https://api.withdipp.com/oauth/v1/revoke' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'token=' \
--data-urlencode 'token_type_hint=' \
--data-urlencode 'client_id=' \
--data-urlencode 'client_secret='
Responses
application/json
Token revoked successfully (even if token was invalid)
Modified at 2025-08-18 07:54:34