Twilio Call
The twilio_call
notification platform enables sending notifications via Voice, powered by Twilio
The requirement is that you have setup Twilio.
Configuration
To use this notification platform in your installation, add the following to your configuration.yaml
configuration.yaml 文件是 Home Assistant 的主要配置文件。它列出了要加载的集成及其特定配置。在某些情况下,需要直接在 configuration.yaml 文件中手动编辑配置。大多数集成可以在 UI 中配置。 [Learn more] file:
# Example configuration.yaml entry
notify:
- name: NOTIFIER_NAME
platform: twilio_call
from_number: E164_PHONE_NUMBER
Configuration Variables
An E.164
Usage
Twilio is a notification platform and thus can be controlled by calling the notify action 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 entry
automation:
- alias: "The sun has set"
triggers:
- trigger: sun
event: sunset
actions:
- action: notify.twilio_call
data:
message: "The sun has set"
target:
- +14151234567
- +15105555555