How to get a specific entity_id (switch type) from device_id?

By default, Zooz Zen71 800LR turns on the switch by tapping up paddle and vice versa. I’m trying to create a blueprint to change tapping up/down paddle to toggle. However, I’m struggling to get the entity_id of type switch from device_id for action section. Here is my blueprint for the up paddle:

blueprint:
  name: Zooz Zen71 800LR up paddle toggling
  description: Change default Zooz Zen71 800LR up paddle to toggle
  domain: automation
  input:
    zooz_zen71_800lr:
      name: Zooz Zen71 800LR
      description: List of available Zooz ZEN71 800LR switches
      selector:
        device:
          filter:
            - manufacturer: Zooz
              model: ZEN71 800LR
              integration: zwave_js
mode: single
max_exceeded: silent

trigger:
  - platform: device
    device_id: !input zooz_zen71_800lr
    domain: zwave_js
    type: event.value_notification.central_scene
    property: scene
    property_key: "001"
    endpoint: 0
    command_class: 91
    subtype: Endpoint 0 Scene 001
    value: 0

action:
  - type: toggle
    device_id: !input zooz_zen71_800lr
    entity_id: xxxx
    domain: switch
action:
  - service: switch.toggle
    target:
      device_id: !input zooz_zen71_800lr

This works out well. Thank you so much.

How is your ZEN71 800LR blueprint dev going? I’m happy to happy test!

Also, FWIW, here is a ZEN 71 (basic) blueprint for reference. I’m not sure how well it works.