home-assistant.io/source/_integrations/signal_messenger.markdown
dependabot[bot] 066f4dc075
Bump textlint-rule-terminology from 3.0.1 to 3.0.2 (#23187)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Franck Nijhof <git@frenck.dev>
2022-06-28 16:42:59 +02:00

3.4 KiB

title description ha_category ha_iot_class ha_release ha_codeowners ha_domain ha_platforms ha_integration_type
Signal Messenger Instructions on how to integrate Signal Messenger within Home Assistant.
Notifications
Cloud Push 0.104
@bbernhard
signal_messenger
notify
integration

The signal_messenger integration uses the Signal Messenger REST API to deliver notifications from Home Assistant to your Android or iOS device.

Setup

The requirements are:

  • You need to set up the Signal Messenger REST API.
  • You need a spare phone number to register with the Signal Messenger service.

Please follow those instructions, to set up the Signal Messenger REST API.

Configuration

To send Signal Messenger notifications with Home Assistant, add the following to your configuration.yaml file:

# Example configuration.yaml entry for Signal Messenger 
notify:
  - name: signal
    platform: signal_messenger
    url: "http://127.0.0.1:8080" # the URL where the Signal Messenger REST API is listening 
    number: "YOUR_PHONE_NUMBER" # the sender number
    recipients: # one or more recipients
      - "RECIPIENT1"

Both phone numbers and Signal Messenger groups can be added to the recipientslist. However, it's not possible to mix phone numbers and Signal Messenger groups in a single notifier. If you would like to send messages to individual phone numbers and Signal Messenger groups, separate notifiers need to be created.

To obtain the Signal Messenger group ids, follow this guide.

{% configuration %} 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 type: string default: notify url: description: The URL where the Signal Messenger REST API listens for incoming requests. required: true type: string number: description: The sender number. required: true type: string recipients: description: A list of recipients (either phone numbers or Signal Messenger group ids). required: true type: string {% endconfiguration %}

Examples

A few examples on how to use this integration as actions in automations.

Text message

...
action:
  service: notify.NOTIFIER_NAME
  data:
    message: "That's an example that sends a simple text message to the recipients specified in the configuration.yaml"

Text message with an attachment

...
action:
  service: notify.NOTIFIER_NAME
  data:
    message: "Alarm in the living room!"
    data:
      attachments:
        - "/tmp/surveillance_camera.jpg"

Text message with an attachment from a URL

To attach files from outside of Home Assistant, the URLs must be added to the allowlist_external_urls list.

Note there is a 50MB size limit for attachments retrieved via URLs. You can also set verify_ssl to false to ignore SSL errors (default true).

...
action:
  service: notify.NOTIFIER_NAME
  data:
    message: "Person detected on Front Camera!"
    data:
      verify_ssl: false
      urls:
        - "http://homeassistant.local/api/frigate/notifications/<event-id>/thumbnail.jpg"