Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.rulesConfigs.list(); } main();
[ { "key": "MY_RULES_CONFIG_KEY" } ]
Retrieve rules config variable keys.
Note: For security, config variable values cannot be retrieved outside rule execution.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Rules config keys successfully retrieved.
Key for a rules config variable.
1 - 127
^[A-Za-z0-9_\-@*+:]*$