Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions source/_integrations/pushbullet.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,21 @@ Type | Prefix | Suffix | Example
Device | `device/` | Device nickname | `device/iphone`
Channel | `channel/` | Channel tag | `channel/my_home`
Email | `email/` | Contact's email address | `email/email@example.com`
SMS | `sms/` | Contact's phone number | `sms/0612345678`

If using targets, your own account's email address functions as 'send to all devices'. All targets are verified (if exists) before sending, except email.

#### Example service payload

```json
{
"message": "A message for many people",
"target": [
"device/telephone",
"email/hello@example.com",
"channel/my_home"
]
}
```yaml
Comment thread
doudz marked this conversation as resolved.

message: A message for many people
target:
- device/telephone
- email/hello@example.com
- channel/my_home
- sms/0612345678

```

To use notifications, please see the [getting started with automation page](/getting-started/automation/).
Expand Down