Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Management API
Go
package example import ( context "context" client "github.com/auth0/go-auth0/management/management/client" option "github.com/auth0/go-auth0/management/management/option" ) func do() { client := client.NewClient( option.WithToken( "<token>", ), ) client.Keys.CustomSigning.Get( context.TODO(), ) }
{ "keys": [ { "kid": "<string>", "key_ops": [], "n": "<string>", "e": "<string>", "x": "<string>", "y": "<string>", "x5u": "<string>", "x5c": [ "<string>" ], "x5t": "<string>", "x5t#S256": "<string>" } ] }
Get entire jwks representation of custom signing keys.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Custom signing keys were successfully retrieved.
JWKS representing an array of custom public signing keys.
An array of custom public signing keys.
Show child attributes