Smartsheet.Api.Internal.TokenResourcesImpl.RevokeAccessToken C# (CSharp) Method

RevokeAccessToken() public method

Revokes the access token used to make this request. The access token will no longer be valid, and subsequent API calls made using the token will fail.

It mirrors To the following Smartsheet REST API method:
DELETE /token

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public RevokeAccessToken ( ) : void
return void
        public virtual void RevokeAccessToken()
        {
            this.DeleteResource<Token>("token", typeof(Token));
        }