Update message_bird notify component configuration (#7428)

This commit is contained in:
Klaas Schoute 2018-11-08 09:05:57 +01:00 committed by Fabian Affolter
parent 8bb9f77ec3
commit ca0379872a

View File

@ -24,11 +24,22 @@ notify:
api_key: YOUR_API_KEY
```
Configuration variables:
- **api_key** (*Required*): Enter the API key for MessageBird. Go to https://www.messagebird.com/ to retrieve your API key.
- **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`.
- **sender** (*Optional*): Setting the optional parameter `sender`. This will be the sender of the SMS. It may be either a telephone number (e.g., `+4915112345678`) or a text with a maximum length of 11 characters. Defaults to `HA`.
{% configuration %}
api_key:
description: "Enter the API key for MessageBird. Go to https://www.messagebird.com/ to retrieve your API key."
required: true
type: string
name:
description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
required: false
default: notify
type: string
sender:
description: Setting the optional parameter `sender`. This will be the sender of the SMS. It may be either a telephone number (e.g., `+4915112345678`) or a text with a maximum length of 11 characters.
required: false
default: HA
type: string
{% endconfiguration %}
### {% linkable_title Usage %}