Frigate clip, snapshot and stream in an actionable notification

I am trying to setup frigate.
The blueprint works fine, but to many bells and whistles and i would like to have a separate automation for my different cameras.

I can not get the uri link in the actionable notification to work.Any tips appreciated.

- alias: "Manual - Trigger alarm when person detected camera woonkamer"
  trigger:
    - platform: mqtt
      topic: frigate/events
      payload: new
      value_template: "{{ value_json.type }}"
      
  condition:     
    condition: template
    value_template: "{{states('alarm_control_panel.home_alarm') != 'disarmed'}}"
    
  action:
    - service: notify.MyNotificationGroup
      data:
        message: 'A {{trigger.payload_json["after"]["label"]}} was detected on the woonkamer camera'
        data:
          image: >-
            https://myurl/api/frigate/notifications/{{trigger.payload_json["after"]["id"]}}/thumbnail.jpg
          tag: '{{trigger.payload_json["after"]["id"]}}'
          when: '{{trigger.payload_json["after"]["start_time"]|int}}'
          entity_id: camera.{{trigger.payload_json["after"]["camera"]}}
          actions:
          - action: URI
            title: Open dashbaord
            uri: /lovelace-alarm/overview
          - action: URI
            title: View Clip
            uri: "https://myurl/api/frigate/notifications/{{trigger.payload_json["after"]["id"]}}/clip.mp4
          - action: URI
            title: View Snapshot
            uri: "http://myurl:5000/api/events/snapshot.jpeg"
          - action: URI
#            title: Stream
#            uri: https://myurl/api/camera_proxy_stream/camera.{{trigger.payload_json["after"]["camera"]}}?token={{states.camera.office.attributes.access_token}}
#          - action: "silence-{{ camera }}"
#            title: Silence New Notifications
#            destructive: true
  mode: parallel

Tried so many things but can not get actionable links to work. The thumbnail image in the message does work however

Not sure if it matters but action should be indented

NOW

          actions:
          - action: URI
            title: Open dashbaord
            uri: /lovelace-alarm/overv

SHOULD BE

           actions:
             - action: URI
               title: Open dashbaord
               uri: /lovelace-alarm/overv

EDIT

URI is also quoted in the examples

Android or IOS? What are you using?

im using ios

indenting doesnt solve it as i just don’t seem to be able to find the tight syntax for the links. They dont resolve when in the browser when i click the actionable link

Do you know you have a hard coded camera name? As I don’t see that anywhere else in your action I assume here is your problem. I saw another post where someone hard coded as well, coincidentally it was also office lol.

It’s possible camera may need to be variablized. Meaning establish what the camera is as a variable once rather than using the logic you’re using each time to get the camera, that may allow you to use .camera.attributes without nesting templates as the guy in the post I linked to did when he said it didn’t work. I’m looking into this as well and I assume that is the solution to avoid a harcoded camera id if you have more than 1 camera.

For silence, you have not defined the variable camera so that will not work. Unless you defined it and didn’t share that then it would. Defining meaning exactly what I described above.