-
-
Notifications
You must be signed in to change notification settings - Fork 420
Notify_voipms
Chris Caron edited this page Jun 24, 2023
·
6 revisions
- Source: https://voip.ms/
- Icon Support: No
- Message Format: Text
- Message Limit: 160 Characters per Message
Sign up for Voip.ms from here. From your dashboard, you will have to enable API access and create a password at the following link: here
Valid syntax is as follows:
voipms://{password}:{email}/{fromPhoneNo}
voipms://{password}:{email}/{fromPhoneNo}/{toPhoneNo}
voipms://{password}:{email}/{fromPhoneNo}/{toPhoneNo1}/{toPhoneNo2}/{toPhoneNoN}/
Variable | Required | Description |
---|---|---|
Yes | The email associated with your Voip.ms account | |
password | Yes | The password for API access, this is different from your Voip.ms account password |
fromPhoneNo | Yes | Specify the phone number you registered with Voip.ms you wish the message to be identified as being sent from. |
to | No | A phone number and/or group you wish to send your notification to. You can use comma's to separate multiple entries if you wish. |
Send a Voip.ms notification to ourselves:
# Assume:
# - our {email} is [email protected]
# - our {password} is abc123
# - The {toPhoneNo} and {fromPhoneNo} is 6135551234
apprise -vv -t "Test Message Title" -b "Test Message Body" \
voipms://abc123:[email protected]/6135551234
Send a Voip.ms notification to another device:
# Assume:
# - our {email} is [email protected]
# - our {password} is abc123
# - The {fromPhoneNo} is 6135551234
# - The {ToPhoneNo} is 5645554321
apprise -vv -t "Test Message Title" -b "Test Message Body" \
voipms://abc123:[email protected]/6135551234/5645554321