Send Slack Messages via Webhook
Configure the Webhook
1



2


3

4

5

{
"text": "Hello, World!"
}
6



7

{
"fallback": "Failed to compose in-app message display notification message.",
"text": "{{event_properties.in_app_message_key | default: "key"}}th in-app message displayed",
"pretext": "{{event_properties.in_app_message_display_type | default: "unknown"}}",
"color": "good",
"attachments": [
{
"fallback": "fallback",
"pretext": "Performed {{event_properties.action_type | default: "unknown"}} for {{event_properties.button_text | default:"button name"}}",
"color": "#0065ff",
"fields": [
{
"title": "[In-App Message Display Notification]",
"value": "In-app message info is at Hackle 👉 <http://dashboard.hackle.io/in-app-messages/{{event_properties.in_app_message_id}}/|link>",
"short": false
}
]
}
]
}8


9

Last updated