Table of Contents

Interface IBlacklistedTokensClient

Namespace
Auth0.ManagementApi.Clients
Assembly
Auth0.ManagementApi.dll
public interface IBlacklistedTokensClient

Methods

CreateAsync(BlacklistedTokenCreateRequest, CancellationToken)

Blacklists a JWT token.

Task CreateAsync(BlacklistedTokenCreateRequest request, CancellationToken cancellationToken = default)

Parameters

request BlacklistedTokenCreateRequest

The BlacklistedTokenCreateRequest containing the information of the token to blacklist.

cancellationToken CancellationToken

The cancellation token to cancel operation.

Returns

Task

A Task that represents the asynchronous create operation.

GetAllAsync(string, CancellationToken)

Gets all the blacklisted claims.

Task<IList<BlacklistedToken>> GetAllAsync(string aud, CancellationToken cancellationToken = default)

Parameters

aud string

The JWT's aud claim. The client_id of the client for which it was issued.

cancellationToken CancellationToken

The cancellation token to cancel operation.

Returns

Task<IList<BlacklistedToken>>

A list of BlacklistedToken objects.