Typescript
import { Vercel } from "@vercel/sdk"; const vercel = new Vercel(); async function run() { const result = await vercel.security.getV1SecurityFirewallEvents({ projectId: "<id>", }); console.log(result); } run();
{ "actions": [ { "startTime": "<string>", "endTime": "<string>", "isActive": true, "action_type": "<string>", "host": "<string>", "public_ip": "<string>", "count": 123 } ] }
Retrieve firewall actions for a project
Show child attributes