Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.userBlocks.deleteByIdentifier({ identifier: "identifier", }); } main();
Remove all Brute-force Protection blocks for the user with the given identifier (username, phone number, or email).
Note: This endpoint does not unblock users that were blocked by a tenant administrator.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Should be any of a username, phone number, or email.
User successfully unblocked.