English
cURL
curl --request POST \ --url https://signin.altostrat.io/oauth/revoke \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data 'token=<string>' \ --data 'client_id=<string>' \ --data 'client_secret=<string>'
Revokes an access_token or refresh_token, invalidating it immediately. This is useful for scenarios like password changes or user-initiated logouts from all devices.
access_token
refresh_token
The token to be revoked.
The application's unique identifier.
The application's client secret.
The token was successfully revoked.
Was this page helpful?