View Source Auth0.Management.Keys (Auth0Api v2.1.0)

Summary

Functions

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

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

Revoke the application signing key with the given ID.

Rotate the application signing key of your tenant.

Types

@type config() :: Auth0.Config.t()
@type error() :: {:error, integer(), term()} | {:error, term()}
@type kid() :: String.t()

Functions

Link to this function

get_signing(kid, config)

View Source
@spec get_signing(kid(), config()) :: {:ok, map()} | error()

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

see

https://auth0.com/docs/api/management/v2/keys/get-signing-key

@spec list_signing(config()) :: {:ok, [map()]} | error()

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

see

https://auth0.com/docs/api/management/v2/keys/get-signing-keys

Link to this function

revoke_signing(kid, config)

View Source
@spec revoke_signing(kid(), config()) :: {:ok, map()} | error()

Revoke the application signing key with the given ID.

see

https://auth0.com/docs/api/management/v2/keys/put-signing-keys

@spec rotate_signing(config()) :: {:ok, map()} | error()

Rotate the application signing key of your tenant.

see

https://auth0.com/docs/api/management/v2/keys/post-signing-keys