Deletes a specified connection user by its email (you cannot delete all users from specific connection). Currently, only Database Connections are supported.
DELETE
/
connections
/
{id}
/
users
TypeScript
コピー
AIに質問
import { ManagementClient } from "auth0";async function main() { const client = new ManagementClient({ token: "<token>", }); await client.connections.users.deleteByEmail("id", { email: "email", });}main();