home-assistant.io/source/_components/notify.group.markdown
Matt N 2b5d3c0c10 Fix over 100 typos/spelling mistakes :P (#1483)
* Fix a bunch of typos/spelling mistakes
* Removed extra spaces from emulated_hue
* Correct device type. of binary_sensor.enocean.markdown
2016-11-23 10:23:23 +01:00

1.2 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release
layout title description date sidebar comments sharing footer logo ha_category ha_release
page Notify Group Instructions how to setup the notify group platform. 2016-08-18 00:12 true false true true home-assistant.png Notifications 0.26

The group notification platform allows you to combine multiple notify platforms into a single service.

To use this notification platform in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
notify:
  - name: NOTIFIER_NAME
    platform: group
    services:
      - service: html5
        data:
          target: "macbook"
      - service: html5_nexus

Configuration variables:

  • name (Required): Setting the parameter name sets the name of the group.
  • services (Required): A list of all the services to be included in the group.
    • service (Required): The service part of an entity ID, i.e. if you use notify.html5 normally, just put html5.
    • data (Optional): A dictionary containing parameters to add to all notify payloads. This can be anything that is valid to use in a payload, such as data, message, target, title.