> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/cloud/de/knowledge-base/how-to-articles/send-real-time-notifications-to-external-services-with-webhooks.md).

# Echtzeit-Benachrichtigungen mit Webhooks an externe Dienste senden

Webhooks ermöglichen es Ihnen, Echtzeit-Benachrichtigungen an externe Dienste zu senden, wenn bestimmte Ereignisse in Ihrer Devolutions Cloud auftreten. Beachten Sie, dass Webhooks auch in Devolutions Server verfügbar sind.

{% hint style="info" %}
Der [Devolutions Cloud-Berichtsdienst](/cloud/de/web-interface/reports/scheduled-reports.md) muss ausgeführt werden, da er die Verschlüsselung und Entschlüsselung von Webhook-Payloads während der Verarbeitung übernimmt.
{% endhint %}

1. Navigieren Sie zu ***Administration*** – ***Webhooks***.
2. Klicken Sie auf **Add.**
3. Geben Sie einen beschreibenden Namen ein.
4. Geben Sie die Endpunkt-URL an, an die Devolutions Cloud die HTTP-POST-Anfragen senden wird.
5. Wählen Sie die Ereignisse aus, die den Webhook auslösen sollen.
6. Optional können Sie eine benutzerdefinierte Payload definieren, die mit dem Webhook gesendet wird. Wenn Sie zum Beispiel für jeden neu erstellten Eintrag eine Nachricht in Slack senden möchten, würde der ***Custom HTTP Body (JSON***) so aussehen:

![](https://cdnweb.devolutions.net/docs/HUBB6002_2025_3.png)

7. Klicken Sie auf ***Add***, um den Webhook zu speichern.

### Liste der Webhook-Handlebars

Nachfolgend finden Sie die Liste der verfügbaren Handlebars-Platzhalter. Diese Platzhalter werden automatisch durch die tatsächlichen Ereignisdaten ersetzt, wenn ein Webhook ausgelöst wird.

#### Zusätzliche Felder, die in jedem Trigger verfügbar sind

* VaultName
* TriggerType (enum)
* TriggerTypeName

#### Neue Auschecken-Anfrage

* EntryId
* EntryName
* RequesterMessage
* Requester.DisplayName
* Requester.Email
* Approvers (Array von {DisplayName: "name", Email: "<email@example.com>"})
* RequestedMinutes

#### Auschecken-Anfrage genehmigt & abgelehnt

* EntryId
* EntryName
* RequesterMessage
* Requester.DisplayName
* Requester.Email
* Approvers (Array von {DisplayName: "name", Email: "<email@example.com>"})
* ApproverMessage
* RequestedMinutes
* Approved (bool)

#### Eintrag erstellt

* EntryId
* EntryName
* CreatedBy.DisplayName
* CreatedBy.Email

#### Anfrage für temporären Zugriff

* EntryId
* EntryName
* RequesterMessage
* Requester.DisplayName
* Requester.Email
* Approvers (Array von {DisplayName: "name", Email: "<email@example.com>"})
* RequestedMinutes

#### Anfrage für temporären Zugriff genehmigt & abgelehnt

* EntryId
* EntryName
* RequesterMessage
* Requester.DisplayName
* Requester.Email
* Approver.DisplayName
* Approver.Email
* ApproverMessage
* RequestedMinutes
* Approved (bool)


---

# 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.devolutions.net/cloud/de/knowledge-base/how-to-articles/send-real-time-notifications-to-external-services-with-webhooks.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.
