Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.anomaly.blocks.checkIp("id"); } main();
Check if the given IP address is blocked via the Suspicious IP Throttling due to multiple suspicious attempts.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
IP address to check.
IP address specified is currently blocked.