Specific dashboard/page won't open on notification click (Android)

As the title says, I can't get clicking on a notification to open my cameras dashboard. It just opens the default dashboard. I've tried a million variations and am going a little nutty. I've also tried with actionable buttons, same result.

If I put the full url (https://MY_IP:8123/daahboard-summers/giantcams) it opens it in Chrome.


action: notify.mobile_app_NAME_phone
metadata: {}
data:
  title: Visitor at Front Door
  message: Click to view live.
  data:
    image: "{{ state_attr('camera.frontcam', 'entity_picture') }}"
    clickAction: /daahboard-summers/giantcams
    tag: front-cam-stream

No, 'daahboard' is not a spelling mistake. I spelled it wrong when I first made the dashboard :woman_facepalming:

Samsung Galaxy S10e. Android 12. Home Assistant Container, 2026.3. HA Companion app 2026.6.6-full. Open HA to default dashboard on the phone is disabled.

Alternatively, a live feed of the camera showing in the notification when it's being looked at would be helpful.

Thanks all!

Would also like to use this for opening the to-do lists page, so I really would like this solved :crossed_fingers:
This function USED to work.

action: "{{ notify_target }}"
data:
  title: See Groceries List
  message: >
    {{ states(list_entity) }} item{{ 's' if states(list_entity)|int != 1 else ''
    }} left
  data:
    tag: groceries
    clickAction: /todo?entity_id={{ list_entity }}

See: Actionable Notifications | Home Assistant Companion Docs

And here for a specific ToDo list example: iPhone notification URIs don't take you to the correct dashboard - #6 by tom_l

Thanks, but I'd rather do without buttons if possible?

Pretty sure you can't get to a ToDo list using clickAction. It is not a dashboard. So clickAction: "/lovelace/todo" wont work.

I swear it used to work :rofl:. Any idea why my current code for the front camera isn't working?

If you reckon it used to work the only thing wrong I can see is that you have not quoted your single line template:

clickAction: "/todo?entity_id={{ list_entity }}"

Still looking for help on this. I believe I’ve followed documentation (Introduction | Home Assistant Companion Docs).

For relative URLs, you can open a lovelace view in the format /lovelace/test where test is replaced by your defined path in the defined view or a lovelace dashboard in the format /lovelace-dashboard/view where /lovelace-dashboard/ is replaced by your defined dashboard URL and view is replaced by the defined path within that dashboard.

    action:
      - action: notify.mobile_app_<your_device_id_here>
        data:
          title: "Motion Detected in Backyard"
          message: "Someone might be in the backyard."
          data:
            # iOS URL
            url: "/lovelace/cameras"
            # Android URL
            clickAction: "/lovelace/cameras"

Mine is below. Using Android (as said in my initial post).

action: notify.mobile_app_NAME_phone
metadata: {}
data:
  title: Visitor at Front Door
  message: Click to view live.
  data:
    image: "{{ state_attr('camera.frontcam', 'entity_picture') }}"
    clickAction: /daahboard-summers/giantcams
    tag: front-cam-stream