Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.keys.encryption.delete("kid"); } main();
Delete the custom provided encryption key with the given ID and move back to using native encryption key.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Encryption key ID
The key was successfully deleted.