Integration Smart Keypad from Philio PSK01 (z-wave device)

Hi there,
I’ve got a SmartKey from Philio. I want to use it for my home door. I can setup a key (a few numbers) to unlock.
In the Z-wave protocol I can read following:

2025-02-27T12:58:29.619Z CNTRLR   [Node 085] [Notification]
                                    type:   Access Control
                                    event:  Keypad unlock operation
                                    userId: 1

My Question: How can I react with an automation (script) on this notification?
How is the right YAML description?

This is what the device show in my script for example

triggers:
  - device_id: df245c70f0d0f70469843f7d456456
    domain: zwave_js
    type: event.notification.entry_control
    command_class: 111
    trigger: device

But I don’t know how I can integrate the event or type from protocol. I’m a little bit lost…

Home assistant makes it easy to use Z-Wave events in your automation its literally copy and paste.

If you go to developer tools > events > then paste zwave_js_notification in the events to subscribe to box and start listening you can see lock events in real time. Here’s an example of the output when I unlock my lock using z-wave commands.

To use the events generated by a device in your automation you select add trigger then search for manual event. In the event type field you put zwave_js_notification then in the event data field you can use anything after data: and before origin: LOCAL. Here is what it should look like in your automation.

Perfect , that’s it. Just what I want to find out what is the trigger. Thanks a lot. GREAT.