Send SMS with Twilio to multiple numbers #1093
Answered
by
TwiN
imrelaszlo
asked this question in
Q&A
-
Hello! Is it possible to send SMS alerting to multiple telephone numbers, based on endpoint or endpoint groups? I've tried in this form but no success, all SMS sent to the default to address:
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
TwiN
May 10, 2025
Replies: 1 comment 1 reply
-
You should be able to use endpoints:
- name: "..."
url: "..."
interval: 1m
conditions:
- "[CONNECTED] == true"
- "len([BODY]) == 0"
alerts:
- type: twilio
provider-override:
to: "RECIPIENT-1-NUMBER"
- type: twilio
provider-override:
to: "RECIPIENT-2-NUMBER" |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
TwiN
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to use
alerts[].provider-override
to specify different numbers, e.g.: