From ca0379872a3c1f65880a76a0916d648c5878e750 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Thu, 8 Nov 2018 09:05:57 +0100 Subject: [PATCH] Update message_bird notify component configuration (#7428) --- .../_components/notify.message_bird.markdown | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/source/_components/notify.message_bird.markdown b/source/_components/notify.message_bird.markdown index 2234a86310e..24672b77a64 100644 --- a/source/_components/notify.message_bird.markdown +++ b/source/_components/notify.message_bird.markdown @@ -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 %}