Table of Contents

Class RevokeRefreshTokenRequest

Namespace
Auth0.AuthenticationApi.Models
Assembly
Auth0.AuthenticationApi.dll

Represents a request to get new tokens based on a previously obtained refresh token.

public class RevokeRefreshTokenRequest : IClientAuthentication
Inheritance
RevokeRefreshTokenRequest
Implements
Inherited Members

Properties

ClientAssertionSecurityKey

Security Key to use with Client Assertion

public SecurityKey ClientAssertionSecurityKey { get; set; }

Property Value

SecurityKey

ClientAssertionSecurityKeyAlgorithm

Algorithm for the Security Key to use with Client Assertion

public string ClientAssertionSecurityKeyAlgorithm { get; set; }

Property Value

string

ClientId

Client ID for which the refresh token was issued.

public string ClientId { get; set; }

Property Value

string

ClientSecret

Client secret for which the refresh token was issued.

public string ClientSecret { get; set; }

Property Value

string

RefreshToken

A refresh token you want to revoke.

public string RefreshToken { get; set; }

Property Value

string