Table of Contents

Class RevokeRefreshTokensRequestContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record RevokeRefreshTokensRequestContent : IEquatable<RevokeRefreshTokensRequestContent>
Inheritance
RevokeRefreshTokensRequestContent
Implements
Inherited Members
Extension Methods

Properties

ClientId

Revoke all refresh tokens for this client.

[JsonPropertyName("client_id")]
public string? ClientId { get; set; }

Property Value

string

Ids

Array of refresh token IDs to revoke. Limited to 100 at a time.

[JsonPropertyName("ids")]
public IEnumerable<string>? Ids { get; set; }

Property Value

IEnumerable<string>

UserId

Revoke all refresh tokens for this user.

[JsonPropertyName("user_id")]
public string? UserId { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.