Revoke Access Token
Endpoint Not Available
The POST /o/revoke_token/ endpoint is currently not available. The route is disabled in the API and requests to this endpoint will return a 404 error.
To invalidate access, you can:
- Wait for the token to expire naturally (based on
expires_infrom the token response) - Delete the OAuth application via
DELETE /o/apps/<id>/to invalidate all tokens issued for that application - Create a new OAuth application and rotate your credentials
Previously Documented Endpoint
POST
/o/revoke_token/
Status: Disabled. This endpoint is not currently routed in the API. The information below is retained for reference in case it is re-enabled in the future.
Intended Purpose
Invalidate an access token to prevent further API access before it expires naturally.
Alternatives
| Alternative | Description |
|---|---|
| Token expiration | Tokens expire automatically based on the expires_in value |
DELETE /o/apps/{id}/ | Delete the OAuth application to invalidate all its tokens |
| Credential rotation | Create a new application and stop using the old credentials |