Table of Contents

Interface ISigningClient

Namespace
Auth0.ManagementApi.Keys
Assembly
Auth0.ManagementApi.dll
public interface ISigningClient
Extension Methods

Methods

GetAsync(string, RequestOptions?, CancellationToken)

Retrieve details of the application signing key with the given ID.

WithRawResponseTask<GetSigningKeysResponseContent> GetAsync(string kid, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

kid string
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetSigningKeysResponseContent>

ListAsync(RequestOptions?, CancellationToken)

Retrieve details of all the application signing keys associated with your tenant.

WithRawResponseTask<IEnumerable<SigningKeys>> ListAsync(RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<IEnumerable<SigningKeys>>

RevokeAsync(string, RequestOptions?, CancellationToken)

Revoke the application signing key with the given ID.

WithRawResponseTask<RevokedSigningKeysResponseContent> RevokeAsync(string kid, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

kid string
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<RevokedSigningKeysResponseContent>

RotateAsync(RequestOptions?, CancellationToken)

Rotate the application signing key of your tenant.

WithRawResponseTask<RotateSigningKeysResponseContent> RotateAsync(RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<RotateSigningKeysResponseContent>