Table of Contents

Class SigningClient

Namespace
Auth0.ManagementApi.Keys
Assembly
Auth0.ManagementApi.dll
public class SigningClient : ISigningClient
Inheritance
SigningClient
Implements
Inherited Members
Extension Methods

Methods

GetAsync(string, RequestOptions?, CancellationToken)

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

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

Parameters

kid string
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetSigningKeysResponseContent>

Examples

await client.Keys.Signing.GetAsync("kid");

ListAsync(RequestOptions?, CancellationToken)

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

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

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<IEnumerable<SigningKeys>>

Examples

await client.Keys.Signing.ListAsync();

RevokeAsync(string, RequestOptions?, CancellationToken)

Revoke the application signing key with the given ID.

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

Parameters

kid string
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<RevokedSigningKeysResponseContent>

Examples

await client.Keys.Signing.RevokeAsync("kid");

RotateAsync(RequestOptions?, CancellationToken)

Rotate the application signing key of your tenant.

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

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<RotateSigningKeysResponseContent>

Examples

await client.Keys.Signing.RotateAsync();