iOS Dynamic Attachments

Hi,
Just curious if anyone has any more up to date information on this topic? The manual Dynamic attachments | Home Assistant Companion Docs shows what works for iOS prior to 2021.5 It doesn’t work for the current iOS.

Manual? Do you mean the actionable example at the bottom for prior to 2021.5? Use the actionable notification page for the current keys and format.

No, the information for opening a camera feed isn’t in that section. That’s what I’m looking for.

https://companion.home-assistant.io/docs/notifications/actionable-notifications/#migrating-from-categories

E In the example change url: to entity_id:

# replacement
action:
  - action: notify.mobile_app_<your_device_id_here>
    data:
      message: "Something happened at home!"
      data:
        url: "/lovelace/cameras" # launched if no action is chosen
        actions:
          # for compatibility, the YAML definition of actions can be used
          # for example, you may use `identifier` instead of `action`
          - action: "ALARM"
            title: "Sound Alarm"
            destructive: true
            uri: "/lovelace/alarm"
          - action: "SILENCE"
            title: "Silence Alarm"

I tried that, but it doesn’t work.

Post your code for the automation.

I really tried to consense it to try and get this working so here it is as of now

action: notify.mobile_app_iphone
  data:
    entity_id: camera.reolink_e1_se_front_yard_camera_fluent
    message: Person detected out front
    title: "***PERSON DETECTED***"

What happens is… I get the notification but when I long press it the camera feed doesn’t come up.