Unifi Protect NOTIFICATION AUTOMATION WITH VIDEO not working

Hello,
anyone else have this working?
I receive the notification on my phone but no image or video attached. What am I missing?

Before iOS 18 it was working great, then the developer drama and the new OS version broke my automation. Help!

alias: "Security: Camera Motion Notification"
description: "Sends a notification with video upon motion detection."
triggers:
  - entity_id:
      - binary_sensor.g5_bullet_motion # Replace with your camera entity
    trigger: state
    from: "on"
    to: "off"
actions:
  - data:
      message: "Motion detected at Camera XXX"
      data:
        image: >-
          /api/unifiprotect/thumbnail/{{ config_entry_id(trigger.entity_id) }}/{{ trigger.from_state.attributes.event_id }}
        video: >-
          /api/unifiprotect/video/{{ config_entry_id(trigger.entity_id) }}/{{ trigger.from_state.attributes.event_id }}
    action: notify.mobile_app_your_device # Replace with your notification target
mode: single
max_exceeded: silent