goalert
goalert copied to clipboard
How to add different SMS providers?
Currently the goalert only has Twilio setup for SMS. We use signalwire for SMS delivery. Is it possible to add different SMS providers? Infact is it possible to add multiple SMS providers per geography? We have few users in US for which we want to use signalwire and we have users in India and we want different SMS provider.
Not at the moment, but we are working on making notification providers pluggable so you can implement your own and/or make adding new ones easier and smoother.
Using multiple providers based on region is an interesting point that we'll need to keep in mind for the design, I can definitely see the benefit in that. We can probably add an option to add providers with some sort of filter (e.g., country code or something)
This issue has been automatically marked as stale because it has not had recent activity.
Is there any update ? We use websms.com for sending SMS/Voice . It would be great if we can specify somehow this configuration. This simple POST send Voice SMS to phone number:
curl -X POST https://api.websms.com/rest/smsmessaging/text \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-u username:password \
-d '{
"recipientAddressList": ["012345678"],
"test": "false",
"messageContent": "Read alert for me.",
"messageType": "voice"
}'
If there is option to populate message from alert and each user can have own phone number that is perfect.
This issue has been automatically marked as stale because it has not had recent activity.