Skip to content

Commit 3ed63d5

Browse files
committed
Add documentation for the notify.group platform
1 parent ea254bb commit 3ed63d5

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: page
3+
title: "Notify Group"
4+
description: "Instructions how to setup the notify group platform."
5+
date: 2016-08-18 00:12
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: home-assistant.png
11+
ha_category: Notifications
12+
ha_release: 0.26
13+
---
14+
15+
The `group` notification platform allows you to combine multiple `notify` platforms into a single service.
16+
17+
To use this notification platform in your installation, add the following to your `configuration.yaml` file:
18+
19+
```yaml
20+
# Example configuration.yaml entry
21+
notify:
22+
name: MyDevices
23+
platform: group
24+
services:
25+
- service: html5
26+
data:
27+
target: "macbook"
28+
- service: html5_nexus
29+
```
30+
31+
Configuration variables:
32+
33+
- **name** (*Required*): Setting the parameter `name` sets the name of the group.
34+
- **services** (*Required*): A list of all the services to be included in the group.
35+
- **service** (*Required*): The service part of an entity ID, i.e. if you use `notify.html5` normally, just put `html5`.
36+
- **data** (*Optional*): A dictonary 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`.

0 commit comments

Comments
 (0)