diff --git a/source/_components/notify.pushbullet.markdown b/source/_components/notify.pushbullet.markdown index 0cac4e4d5546..ad52044e55b8 100644 --- a/source/_components/notify.pushbullet.markdown +++ b/source/_components/notify.pushbullet.markdown @@ -24,10 +24,17 @@ notify: api_key: YOUR_API_KEY ``` -Configuration variables: - -- **api_key** (*Required*): Enter the API key for Pushbullet. Go to [https://www.pushbullet.com/#settings/account](https://www.pushbullet.com/#settings/account) to retrieve your API key/access token. -- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. +{% configuration %} +api_key: + description: Enter the API key for Pushbullet. Go to [https://www.pushbullet.com/#settings/account](https://www.pushbullet.com/#settings/account) to retrieve your API key/access token. + required: true + type: string +name: + description: Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. + required: false + default: notify + type: string +{% endconfiguration %} ### {% linkable_title Usage %} @@ -84,7 +91,6 @@ action: - **file** (*Required*): File to send with Pushbullet. - ### {% linkable_title File URL support %} ```yaml @@ -100,6 +106,7 @@ action: - **file_url** (*Required*): File to send with Pushbullet. ### {% linkable_title Single target %} + ```yaml action: service: notify.NOTIFIER_NAME @@ -108,10 +115,9 @@ action: message: "This only goes to one specific device" target: device/DEVICE_NAME ``` -- **target**: Pushbullet device to recive the notification. +- **target**: Pushbullet device to recive the notification.
Don't forget to [whitelist external directories](/docs/configuration/basic/), so Home Assistant has access to them.
-