From ee5128c8250be2784b4897930c5c0b55fe113852 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Mon, 9 Sep 2024 06:08:57 -0700 Subject: [PATCH] Update nest media attachment documentation (#34607) --- source/_integrations/nest.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/_integrations/nest.markdown b/source/_integrations/nest.markdown index 10bfd6fb3b9..69b5bbe35d4 100644 --- a/source/_integrations/nest.markdown +++ b/source/_integrations/nest.markdown @@ -396,7 +396,7 @@ The Media Source APIs can be used in [Companion App Attachments](https://compani You can use the Nest Device Trigger payload fields `attachment.image` or `attachment.video`in an [automation](/getting-started/automation/) to send a notification from an [actions](/getting-started/automation-action/) as shown in the examples below. -{% details "Example Action: Clip Preview (mp4) attachment for iOS" %} +{% details "Example Action: Clip Preview (mp4) attachment for Android or iOS" %} Example for cameras that support Clip Previews used with iOS which can render video in notifications. @@ -408,8 +408,8 @@ data: message: Doorbell Pressed title: Someone pressed the doorbell data: - image: {{ trigger.event.data.attachment.image }} - video: {{ trigger.event.data.attachment.video }} + image: "{{ trigger.event.data.attachment.image }}" + video: "{{ trigger.event.data.attachment.video }}" mode: single ``` @@ -429,7 +429,7 @@ data: message: Doorbell Pressed title: Someone pressed the doorbell data: - image: {{ trigger.event.data.attachment.image }} + image: "{{ trigger.event.data.attachment.image }}" ``` {% endraw %} @@ -448,7 +448,7 @@ data: message: Doorbell Pressed title: Someone pressed the doorbell data: - image: {{ trigger.event.data.attachment.image }} + image: "{{ trigger.event.data.attachment.image }}" ``` {% endraw %}