-
-
Notifications
You must be signed in to change notification settings - Fork 528
Notify_sfr
Chris Caron edited this page Jun 9, 2024
·
2 revisions
- Source: https://nexmo.com/
- Icon Support: No
- Message Format: Text
- Message Limit: 160 Characters per message
To use Vonage, you will need to acquire your API Key and API Secret. Both of these are accessible via the Vonage Dashboard.
The {FromPhoneNo} must be a number provided to you through Nexmo
Valid syntax is as follows:
sfr://{user}:{password}@{space_id}/{PhoneNo}sfr://{user}:{password}@{space_id}/{PhoneNo1}/{PhoneNo2}/{PhoneNoN}
| Variable | Required | Description |
|---|---|---|
| user | Yes | The user associated with your SFR account. |
| password | Yes | The password associated with your SFR account. |
| space_id | Yes | The Space ID associated with your SFR account. |
| PhoneNo | *No | The phone number you wish to notify |
Send a SFR Notification:
# Assuming our {user} is foo
# Assuming our {password} is bar
# Assuming our {space_id} is 1234
# Assuming our {PhoneNo} - is in the US somewhere making our country code +1
# - identifies as 800-555-1223
apprise -vv -t "Test Message Title" -b "Test Message Body" \
sfr://foo:bar@1234/18005551223
# the following would also have worked (spaces, brackets,
# dashes are accepted in a phone no field):
apprise -vv -t "Test Message Title" -b "Test Message Body" \
sfr://foo:bar@1234//1-(800) 555-1223