CORS
The API takes an access or refresh token and revokes it. Revoked tokens are considered inactive at the introspection endpoint. A client may only revoke its own tokens. See Revoke tokens.
Note: The
/revokeendpoint requires client authentication. The method is configured per client app. See Client authentication methods.
Indicates the type of token being passed
| Enum Value | Description |
|---|---|
| access_token | OAuth 2.0 access token |
| device_secret | Device secret |
| refresh_token | OAuth 2.0 refresh token |
| oauth_sts | OAuth Security Token Service (STS). This type is only available if you're subscribed to Okta for AI Agents. |
Example:"access_token"
POST
curl -i -X POST \
https://okta-subdomain.pixtulate.com/oauth2/v1/revoke \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'token=<access_token_value>' \
-d token_type_hint=access_token