Skip to content

Revocation

Request

Revoke a specific refresh token, making it no longer valid and forcing the user to re-authenticate if they need a new one.

Bodyapplication/x-www-form-urlencodedrequired
client_idstringrequired

Client ID.

client_secretstringrequired

Client secret.

tokenstringrequired

Token to revoke.

token_type_hintstring

A hint about the type of the token submitted for revocation.

Enum:"access_token""refresh_token"
curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/oidc/token/revocation \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d client_id=string \
  -d client_secret=string \
  -d token=string \
  -d token_type_hint=access_token

Responses

Token revoked successfully

Response
No content