Class RevokeRefreshTokensRequestContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record RevokeRefreshTokensRequestContent : IEquatable<RevokeRefreshTokensRequestContent>
- Inheritance
-
RevokeRefreshTokensRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
Audience
Resource server identifier (audience) to scope the revocation. Must be used with both user_id and client_id.
[JsonPropertyName("audience")]
public string? Audience { get; set; }
Property Value
ClientId
Revoke refresh tokens for this client. Must be paired with user_id; optionally narrowed further with audience.
[JsonPropertyName("client_id")]
public string? ClientId { get; set; }
Property Value
Ids
Array of refresh token IDs to revoke. Limited to 100 at a time.
[JsonPropertyName("ids")]
public IEnumerable<string>? Ids { get; set; }
Property Value
UserId
Revoke all refresh tokens for this user.
[JsonPropertyName("user_id")]
public string? UserId { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.