diff --git a/source/_components/notify.mqtt.markdown b/source/_components/notify.mqtt.markdown index 3f2cb633a9e..d0718b11735 100644 --- a/source/_components/notify.mqtt.markdown +++ b/source/_components/notify.mqtt.markdown @@ -14,7 +14,7 @@ ha_iot_class: depends The MQTT notification support is different than the other [notification](/components/notify/) platforms. It is a service. This means that you don't have to create a configuration entry but you need to provide more details when calling the service. -**Call Service** section from the **Developer Tools** allows you to send MQTT messages. Choose *mqtt/publish* from the list of **Available services:** and enter something like the sample below into the **Service Data** field and hit **CALL SERVICE**. +**Call Service** section from the **Developer Tools** allows you to send MQTT messages. Choose *mqtt.publish* from the list of **Available services:** and enter something like the sample below into the **Service Data** field and hit **CALL SERVICE**. ```json {"payload": "Test message from HA", "topic": "home/notification", "qos": 0, "retain": 0} @@ -24,7 +24,13 @@ The MQTT notification support is different than the other [notification](/compon

-Using the [REST API](/developers/rest_api/#post-apiservicesltdomainltservice) to send a message to a given topic. +The same will work for automations. + +

+ +

+ +Using the [REST API](https://developers.home-assistant.io/docs/en/external_api_rest.html) to send a message to a given topic. ```bash $ curl -X POST -H "x-ha-access: YOUR_PASSWORD" \ diff --git a/source/images/screenshots/mqtt-notify-action.png b/source/images/screenshots/mqtt-notify-action.png new file mode 100644 index 00000000000..bbb82abfb28 Binary files /dev/null and b/source/images/screenshots/mqtt-notify-action.png differ diff --git a/source/images/screenshots/mqtt-notify.png b/source/images/screenshots/mqtt-notify.png index 4c93fe1d14d..5b3f496ddf8 100644 Binary files a/source/images/screenshots/mqtt-notify.png and b/source/images/screenshots/mqtt-notify.png differ