> For the complete documentation index, see [llms.txt](https://docs.screendesk.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.screendesk.io/security/audit-logs/webhooks-and-siem-delivery.md).

# Webhooks and SIEM delivery

Send audit logs to your monitoring platform in near real-time. This works with tools like Splunk, Datadog, and Sumo Logic.

### Add a webhook

<figure><img src="/files/bL8xM1etKX7OhjyJ41lp" alt=""><figcaption></figcaption></figure>

{% stepper %}
{% step %}

### Open audit log webhooks

Go to **Account Settings → Security → Audit logs**.
{% endstep %}

{% step %}

### Create the webhook

Click **Add webhook**.
{% endstep %}

{% step %}

### Configure

<figure><img src="/files/QfOXgZKxr4wRYLb8qPSu" alt=""><figcaption></figcaption></figure>

* **Name**: label for the destination
* **URL**: HTTPS endpoint
* **Description**: optional notes
* **Secret key**: optional HMAC signing secret
* **Custom headers**: optional auth headers
* **Timeout**: 1–300 seconds
* **Max retries**: 0–10
  {% endstep %}
  {% endstepper %}

### Filter what gets sent

Filters are per webhook:

* **Categories**
* **Event types**
* **Severities**

Leave filters empty to receive everything.

### Test delivery

1. Click **Test** next to the webhook.
2. Review the delivery result.

### Payload format (example)

{% code title="Webhook payload (example)" %}

```json
{
  "event": "user.login",
  "event_category": "authentication",
  "severity": "low",
  "timestamp": "2026-02-02T14:30:00Z",
  "audit_log": {
    "id": 12345,
    "event_type": "user.login",
    "status": "success",
    "ip_address": "192.168.1.100",
    "user_agent": "Mozilla/5.0...",
    "metadata": {}
  },
  "user": {
    "id": 42,
    "name": "Jane Smith",
    "email": "jane@company.com"
  },
  "account": {
    "id": 1,
    "name": "Acme Corp"
  }
}
```

{% endcode %}

### Verify webhook signatures (optional)

When a secret key is set, verify the `X-Webhook-Signature` header:

```
HMAC-SHA256(secret_key, request_body)
```

### Retries

Failed deliveries retry with exponential backoff:

* 1 min
* 5 min
* 15 min
* 30 min
* 1 hour
* 2 hours


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.screendesk.io/security/audit-logs/webhooks-and-siem-delivery.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
