Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.rulesConfigs.delete("key"); } main();
Delete a rules config variable identified by its key.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Key of the rules config variable to delete.
1 - 127
^[A-Za-z0-9_\-@*+:]*$
Rules config variable successfully removed.