Revoke a Token
Revoke a Token
An Access Token can be revoked at any time by either sending the Access Token or
Refresh Token the POST /oauth2/revoke endpoint.
cURL
curl -i -X POST "https://api.box.com/oauth2/revoke" \
-H "content-type: application/x-www-form-urlencoded" \
-d "client_id=[CLIENT_ID]" \
-d "client_secret=[CLIENT_SECRET]" \
-d "token=[ACCESS_TOKEN]"Node/TypeScript v10
await auth.revokeTokens();
// client's tokens have been revokedPython v10
client.auth.revoke_token().NET v10
await auth.RevokeTokenAsync();Swift v10
try await auth.revokeToken()Java v10
auth.revokeToken();
// client's tokens have been revokedPython v4
oauth.revoke()Node v4
client.revokeTokens("<TOKEN>")
.then(() => {
// the client's access token have been revoked
});