Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.networkAcls.delete("id"); } main();
Delete existing access control list for your client.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The id of the ACL to delete
36
Network ACL successfully deleted