Is it possible to revoke one access token while keeping the other access tokens active?

Hi,

I’m referring to this page regarding the details of API revoking access token

I saw below description regarding the API

If an account has more than one OAuth access token for your application, this endpoint revokes all of them, regardless of which token you specify.

I also noticed a field revoke_only_access_token in request body, with below description

revoke_only_access_token boolean

If true, terminate the given single access token, but do not terminate the entire authorization. Default: false

By reading the two descriptions, I’m a bit confused whether it’s possible to revoke a specific access token while keeping the other access tokens still active, it will be appreciated if you can help to clarify that.

Thanks in advance.

@Alfred Yes, this is possible. To only remove the single token use revoke_only_access_token: true in the RevokeToken request. If you set this to false or left it out of the request, all tokens associated to the account being revoked will also be revoked.

Noted, thanks for the reply