From 6f3a6fb29b021fc882d3b013a4d79304ba4b02a0 Mon Sep 17 00:00:00 2001 From: lead2gold Date: Wed, 29 Nov 2017 20:26:41 -0500 Subject: [PATCH] Created Notify_pushbullet (markdown) --- Notify_pushbullet.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Notify_pushbullet.md diff --git a/Notify_pushbullet.md b/Notify_pushbullet.md new file mode 100644 index 0000000..21c6638 --- /dev/null +++ b/Notify_pushbullet.md @@ -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 +``` \ No newline at end of file