Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.keys.customSigning.get(); } main();
{ "keys": [ { "kty": "EC", "kid": "<string>", "use": "sig", "key_ops": [ "verify" ], "alg": "RS256", "n": "<string>", "e": "<string>", "crv": "P-256", "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