From 29c87a8a08663b2b35f21417d32fef359be47306 Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Fri, 3 May 2024 12:02:46 +0200 Subject: [PATCH] Add title option to notify entity (#32576) * Add title option to notify entity * Update example --- source/_integrations/notify.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/_integrations/notify.markdown b/source/_integrations/notify.markdown index 3284d341d1cd..ce65e495ad40 100644 --- a/source/_integrations/notify.markdown +++ b/source/_integrations/notify.markdown @@ -41,6 +41,7 @@ Integrations can also implement the notify entity platform. Entity platform impl | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | | `message` | no | Body of the notification. +| `title` | yes | Title of the notification. ## Companion app notifications @@ -71,6 +72,7 @@ service: notify.send_message data: entity_id: notify.my_direct_message_notifier message: "You have an update!" + title: "Status changed" ``` {% endraw %}