Skip to main content
GET
/
v1
/
security
/
firewall
/
events
get_/v1/security/firewall/events
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
    }
  ]
}

Query Parameters

projectId
string
required
startTimestamp
number
endTimestamp
number

Response

actions
object[]
required
I