Woox Camera R4252 and picture

Hi,
I jsut receive my Woox Camera R4252.
I integrate it to Tuya app and create a little automation with notification when one mouvement is detected.
I would like attach picture or video to the alert.

My automation :

############################################################################################################################################################################
### Notification mouvement dehors ###
############################################################################################################################################################################
- id: mouvement_dehors
  description: "Notification d'un mouvement dehors"
  alias: Notification d'un mouvement dehors
  mode: single
  trigger:
      - platform: device
        type: turned_on
        device_id: XxX
        entity_id: XxX
        domain: switch
  condition:
      - condition: time
        weekday:
          - mon
          - tue
          - wed
          - thu
          - fri
          - sat
          - sun
        after: "08:00:00"
        before: "00:00:00"
  action:
      - service: notify.lilp_bot
        data:
          title: Mouvement détecté
          message: Un mouvement a été détecté dehors.

Where I can pick picture or video capture of the movement to attach at telegram notification.3

Thanks.