Created Notify_pushbullet (markdown)

lead2gold 2017-11-29 20:26:41 -05:00
parent c34f7b7ca1
commit 6f3a6fb29b

33
Notify_pushbullet.md Normal file

@ -0,0 +1,33 @@
## Pushbullet Notifications
* **Source**: https://www.pushbullet.com/
* **Icon Support**: No
* **Message Format**: Text
* **Message Limit**: 32768 Characters per Message
### Syntax
Valid syntaxes are as follows:
* **pbul**:://**{accesstoken}**
* **pbul**:://**{accesstoken}**/**{device_id}**
* **pbul**:://**{accesstoken}**/**#{channel}**
* **pbul**:://**{accesstoken}**/**{email}**
You can also form any combination of the above and perform updates from one url:
* **pbul**:://**{accesstoken}**/**{device_id}**/**#{channel}**/**{email}**
If neither a **{device_id}**, **#{channel}**, or **{email}** is specified, then the default configuration is to send to _all_ of your configured _devices_.
### Parameter Breakdown
| Variable | Required | Description
| ----------- | -------- | -----------
| accesstoken | Yes | The Access Token can be generated on the Settings page of your Pushbullet's account. You must have an access token for this Notification service to work.
| device_id | No | Associated devices with your Pushbullet account can be found in your _Settings_
| channel | No | Channels must be prefixed with a hash (#) or they will be interpreted as a device_id. Channels must be registered with your Pushbullet account to work.
| email | No | Emails only work if you've registered them with your Pushbullet account.
#### Example
Send a Pushbullet notification to all devices:
```bash
# Assuming our {accesstoken} is abcdefghijklmno
notify pbul://abcdefghijklmno
```