-
-
Notifications
You must be signed in to change notification settings - Fork 441
Notify_twilio
Chris Caron edited this page May 8, 2019
·
6 revisions
- Source: https://twilio.com
- Icon Support: No
- Message Format: Text
- Message Limit: 140 Characters per message
To use Twilio, you will need to acquire your Account SID and Auth Token. Both of these are accessible via the Twilio Dashboard.
Those who are using a Trial account will only be able to send test messages (that won't actually send out). You can use URLs such as:
Valid syntaxes are as follows:
- twilio://{AccountSID}:{AuthToken}@{FromPhoneNo}/+{PhoneNo}
- twilio://{AccountSID}:{AuthToken}@{FromPhoneNo}/+{PhoneNo1}/+{PhoneNo2}/+{PhoneNoN}
If no ToPhoneNo is specified, then the FromPhoneNo will be messaged instead; hence the following is a valid URL:
- twilio://{AccountSID}:{AuthToken}@{FromPhoneNo}/
Short Codes are also supported but require at least 1 Target PhoneNo
- twilio://{AccountSID}:{AuthToken}@{ShortCode}/+{PhoneNo}
- twilio://{AccountSID}:{AuthToken}@{ShortCode}/+{PhoneNo1}/+{PhoneNo2}/+{PhoneNoN}
Variable | Required | Description |
---|---|---|
AccountSID | Yes | The Account SID associated with your Twilio account. This is available to you via the Twilio Dashboard. |
AuthToken | Yes | The Auth Token associated with your Twilio account. This is available to you via the Twilio Dashboard. |
FromPhoneNo | *No | The Phone Number associated with your Twilio account you wish the SMS message to come from. It must be a number registered with Twilio. As an alternative to the FromPhoneNo, you may provide a ShortCode instead. The phone number MUST include the country codes dialling prefix as well when placed. This field is also very friendly and supports brackets, spaces and hyphens in the event you want to format the number in an easy to read fashion. |
ShortCode | *No | The ShortCode associated with your Twilio account you wish the SMS message to come from. It must be a number registered with Twilio. As an alternative to the ShortCode, you may provide a FromPhoneNo instead. |
PhoneNo | *No | A phone number MUST include the country codes dialling prefix as well when placed. This field is also very friendly and supports brackets, spaces and hyphens in the event you want to format the number in an easy to read fashion. Note: If you're using a ShortCode, then at least one PhoneNo MUST be defined. |
Note: This notification service does not use the title field; only the body is passed along.
Send a Twilio Notification as an SMS:
# Assuming our {AccountSID} is AC735c307c62944b5a
# Assuming our {AuthToken} is e29dfbcebf390dee9
# Assuming our {FromPhoneNo} is +1-900-555-9999
# Assuming our {PhoneNo} - is in the US somewhere making our country code +1
# - identifies as 800-555-1223
apprise twilio://AC735c307c62944b5a:e29dfbcebf390dee9@19005559999/18005551223
# the following would also have worked (spaces, brackets,
# dashes are accepted in a phone no field):
apprise twilio://AC735c307c62944b5a:e29dfbcebf390dee9@1-(900) 555-9999/1-(800) 555-1223