A Make scenario that receives a webhook event and broadcasts it simultaneously to Slack, email, and SMS so critical alerts reach everyone instantly. Ideal for incident or high-priority notifications.
{
"version": "1.0",
"platform": "make",
"name": "Webhook to Multi-Channel Alert",
"flow": [
{
"id": 1,
"module": "gateway:customWebhook",
"type": "trigger",
"mapper": {
"hook": "alerts"
}
},
{
"id": 2,
"module": "slack:createMessage",
"type": "action",
"mapper": {
"channel": "#incidents",
"text": "ALERT: {{1.message}}"
}
},
{
"id": 3,
"module": "email:sendEmail",
"type": "action",
"mapper": {
"to": "oncall@example.com",
"subject": "Incident Alert",
"text": "{{1.message}}"
}
},
{
"id": 4,
"module": "twilio:sendMessage",
"type": "action",
"mapper": {
"to": "+15555550123",
"body": "ALERT: {{1.message}}"
}
}
]
}