How to push notifications from Reolink doorbell to iPhone with snap shot

I found a discussion in reddit with a sample yaml code-

service: notify.mobile_app_xxx
metadata: {}
data:
  message: "Front Door Detected Motion "
  title: Security Camera
  data:
    image: /api/camera_proxy/camera.reolink_video_doorbell_poe_snapshots_clear
    actions:
      - action: URI
        title: Open Reolink
        uri: app://com.mcu.reolink
      - action: mutecamera
        title: Mute 2 Hours

Tried to adapt it to my use-

It doesnt work. There isnt any image in the push notification. If i click the notification it just opens HA.

Sorry for the screenshot but I couldn’t find a way to copy the text from HA to this post.

Finally figured out how to copy/paste the yaml code for my current notification.

alias: back doorbell press
description: Back doorbell activation notification.
triggers:
  - type: turned_on
    device_id: 47135e972f93b2ddf2c2dfe8385fb317
    entity_id: 513b6071f0757d5023672cb4144fc508
    domain: binary_sensor
    trigger: device
conditions: []
actions:
  - data:
      message: Someones at the back door.
      title: Back doorbell press
      data:
        push:
          image: /api/camera_proxy/camera.rear_doorbell_poe_snapshots_clear
          sound:
            name: Ding-dong.wav
    action: notify.mobile_app_walters_iphone_15
  - data:
      message: Someones at the back door.
      title: Back doorbell press
      data:
        push:
          image: /api/camera_proxy/camera.rear_doorbell_poe_snapshots_clear
          sound:
            name: Ding-dong.wav
    action: notify.mobile_app_marys_iphone
mode: single

Everything is working except the image which leads me to believe I have the image path wrong. I can see the image in the Media>Camera>Rear Doorbell PoE Snapshots clear but don’t know how to get the proper path to it.

update
I realized I needed to save a snapshot to /media after a bunch of googling so current yaml is-

alias: back doorbell press
description: Back doorbell activation notification.
triggers:
  - type: turned_on
    device_id: 47135e972f93b2ddf2c2dfe8385fb317
    entity_id: 513b6071f0757d5023672cb4144fc508
    domain: binary_sensor
    trigger: device
conditions: []
actions:
  - action: camera.snapshot
    metadata: {}
    data:
      filename: /media/snapshot_rear.png
    target:
      entity_id: camera.rear_doorbell_poe_snapshots_clear
  - delay:
      hours: 0
      minutes: 0
      seconds: 0
      milliseconds: 500
  - data:
      message: Someones at the back door.
      title: Back doorbell press
      data:
        push:
          url: fb1675493782511558://
          image: /media/local/snapshot_rear.png
          sound:
            name: Ding-dong.wav
    action: notify.mobile_app_walters_iphone_15
  - data:
      message: Someones at the back door.
      title: Back doorbell press
      data:
        push:
          image: /media/local/snapshot_rear.jpeg
          sound:
            name: Ding-dong.wav
    action: notify.mobile_app_marys_iphone
mode: single

The snapshots are being created-

But still no image in the notification.