I am trying to create an actionable notification that when clicked it will open a sub camera view. Unfortunately everything I have tried so far only opens the main dashboard page and I can’t get it to open the sub view. There are plenty of examples listed throughout this forum but nothing has worked for me so far. Here is my current automation action yaml part:
data:
message: "{{ response.text }}"
title: >-
Person has been detected at the front door {{ now().strftime("%-m.%-d.%Y
%-I:%M:%S %p") }}
data:
image: /local/tmp/snapshot-doorbell.jpg
entity_id: camera.reolink_front_doorbell_fluent_2
actions:
- action: uri
title: "View Front Doorbell Camera"
uri: "/rsp-home/front-doorbell-camera"
I receive the notification on my phone along with the snapshot however the action part to open the sub view of the frontdoor bell camera doesn’t work. It only goes to the main dashboard view. I have tried changing the “uri” to “url” because I saw that mentioned in a few posts but that didn’t work. I tried with and without quotes. Anyone have an idea what I am doing incorrectly and what needs to change?