Skip to content

Notify_voipms

Chris Caron edited this page Feb 12, 2023 · 6 revisions

Voip.ms Notifications

  • Source: https://voip.ms/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 160 Characters per Message

Setup

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

Syntax

Valid syntax is as follows:

  • voipms://{password}:{email}/{fromPhoneNo}
  • voipms://{password}:{email}/{fromPhoneNo}/{toPhoneNo}
  • voipms://{password}:{email}/{fromPhoneNo}/{toPhoneNo1}/{toPhoneNo2}/{toPhoneNoN}/

Parameter Breakdown

Variable Required Description
email 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
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. This is an alias to targets.
from *No Specify the phone number you registered with Voip.ms you wish the message to be identified as being sent from.

Example

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
Clone this wiki locally