Instructions on how to add Twilio Call notifications to Home Assistant.
Notifications
0.37
twilio_call
Cloud Push
notify
integration
The twilio_call notification platform enables sending notifications via Voice, powered by Twilio.
Passed message will be read by Text-to-speech service.
To use this notification platform in your installation, add the following to your configuration.yaml file:
# Example configuration.yaml entrynotify:- name:NOTIFIER_NAMEplatform:twilio_callfrom_number:E164_PHONE_NUMBER
{% configuration %}
from_number:
description: "An E.164 formatted phone number, like +14151234567. See Twilio's guide to formatting phone numbers for more information."
required: true
type: string
name:
description: Setting the optional parameter name allows multiple notifiers to be created. The notifier will bind to the service notify.NOTIFIER_NAME.
required: false
default: "notify"
type: string
{% endconfiguration %}
Usage
Twilio is a notification platform and thus can be controlled by calling the notify service as described here. It will send a notification to all E.164 phone numbers in the notification target. See the notes above regarding the from_number configuration variable for information about formatting phone numbers.
# Example automation notification entryautomation:- alias:"The sun has set"trigger:platform:sunevent:sunsetaction:service:notify.twilio_calldata:message:"The sun has set"target:- +14151234567- +15105555555