# Webhook Sample Alert Payloads

This page provides sample JSON webhook payloads for PDU-related Event IDs. Each example shows the common webhook parameters and the alert-specific `alertData` object.

### Usage

Use the `alertId` field to identify the Event ID, and use the `alertData` object to read alert-specific information for each event.

### PDU Outlet Events

#### pdu\_outlet\_reset

```json
{
  "sentAt": "2026-03-11T06:10:55.000Z",
  "organizationId": "6115e91491d5ef56745ab984",
  "organizationName": "Engenius Cloud",
  "hierarchyviewId": "6115e91491d5ef56745ab984",
  "hierarchyviewName": "Example Hierarchy View",
  "networkId": "9915e35691d5ef7f545ab794",
  "networkName": "Example Network",
  "deviceSerial": "21B0V2111JEL",
  "deviceMac": "88:dc:96:97:07:5c",
  "deviceName": "Example Device",
  "deviceModel": "ECP214",
  "deviceType": "pdu",
  "alertId": "pdu_outlet_reset",
  "alertType": "Outlet Reset",
  "alertLevel": "notice",
  "occurredAt": "2026-03-11T06:09:33.000Z",
  "alertData": {
    "outlet_id": "6",
    "method": "AutoReboot",
    "sites": "10.1.1.1, 10.1.1.2",
    "ping_count": 2,
    "reboot_count": 3
  }
}
```

#### pdu\_outlet\_reset\_by\_autoreboot

```json
{
  "sentAt": "2026-03-11T06:10:55.000Z",
  "organizationId": "6115e91491d5ef56745ab984",
  "organizationName": "Engenius Cloud",
  "hierarchyviewId": "6115e91491d5ef56745ab984",
  "hierarchyviewName": "Example Hierarchy View",
  "networkId": "9915e35691d5ef7f545ab794",
  "networkName": "Example Network",
  "deviceSerial": "21B0V2111JEL",
  "deviceMac": "88:dc:96:97:07:5c",
  "deviceName": "Example Device",
  "deviceModel": "ECP214",
  "deviceType": "pdu",
  "alertId": "pdu_outlet_reset_by_autoreboot",
  "alertType": "Outlet Reset Via AutoReboot",
  "alertLevel": "notice",
  "occurredAt": "2026-03-11T06:09:33.000Z",
  "alertData": {
    "outlet_id": "6",
    "sites": "10.1.1.1, 10.1.1.2",
    "ping_count": 2,
    "reboot_count": 3
  }
}
```

#### pdu\_outlet\_auto\_reboot\_no\_power

```json
{
  "sentAt": "2026-03-11T06:10:55.000Z",
  "organizationId": "6115e91491d5ef56745ab984",
  "organizationName": "Engenius Cloud",
  "hierarchyviewId": "6115e91491d5ef56745ab984",
  "hierarchyviewName": "Example Hierarchy View",
  "networkId": "9915e35691d5ef7f545ab794",
  "networkName": "Example Network",
  "deviceSerial": "21B0V2111JEL",
  "deviceMac": "88:dc:96:97:07:5c",
  "deviceName": "Example Device",
  "deviceModel": "ECP214",
  "deviceType": "pdu",
  "alertId": "pdu_outlet_auto_reboot_no_power",
  "alertType": "Outlet Device No Power after AutoReboot Reset",
  "alertLevel": "notice",
  "occurredAt": "2026-03-11T06:09:33.000Z",
  "alertData": {
    "outlet_id": "14"
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.engenius.ai/webhook/webhook-sample-alerts/pdu/webhook-sample-alert-payloads.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
