How to get Doorbird event trigger my automation

I have 2 DoorBirds. All working fine. I’m trying to catch the event into an automation.

When I check the event at entities I can see the event is being triggered:

The event is working, so all settings at Doorbird are correct.

I have created an automation but nothing is triggered. Anybody who knows what is going wrong?

alias: doorbird_skikeller_doorbell
description: ""
triggers:
  - event_type: doorbird_skikeller_tor_doorbell
    trigger: event
  - event_type: doorbird_skikeller_motion
    trigger: event
actions:
  - action: notify.mobile_app_ipad_lavender_hill
    data:
      message: Skikeller Doorbell
      title: DoorBird
  - data:
      message: Somebody pressed Doorbird skihalle
    action: notify.mobile_app_iphone_16_pro_jeroen
mode: single

It is not an event, it is an event entity. In an automation you would use a state trigger to react to state changes on the event entity.

triggers:
 - trigger: state
   entity_id: event.doorbird_skikeller_tor_doorbell

Great!!! Many thanks as I have been trying for years and everywhere in the forum I see examples as it’s treated as an event… Every time I have put this issue aside and I am trying once in a while being here to get it working (holiday home)…

As a next step, is it possible to make a pop-up of the related DoorBird camera on any dashboard which is open at the iPad?