Comment on page
🪝
Webhooks
RunReveal will send HTTP POST request to a URL of your choosing.
runreveal notifications webhook add --name "Tines" https://yoururl
{
"ID": "2O1lzQKpO2bZHeM8ghlfsRZn9jC",
"WorkspaceID": "2KUOdhvRReF5RZfQX8ILneT4fSd",
"Name": "SIRT Team",
"DestType": "email"
}
The following shows the schema of the data that is sent in the webhook.
Property | Data Type | Description |
---|---|---|
title | string | The template title that was rendered. |
message | string | The template body that was rendered |
query | scheduled query response | The field will be null if the notification was created from a trigger. Otherwise it will contain the data of the scheduled query. |
trigger | trigger data | This field will be null if the notification was created from a scheduled query. Otherwise it will contain data about the trigger that fired. |
rawEvent | Raw Event Data | The raw event that was triggered on. If the notification was from a scheduled query this field will be null. |
Last modified 3mo ago