Zipato Multisound siren ph-pse02.eu / dlink DCH-Z510

I had the same problem a few years ago with another home automation box (jeedom).

Zipato modified the philio firmware to make it compatible with its own box.
My Zipato PSE2 siren firware is v1.8 (I think there as differences with FW v1.15).

For the 113 command to work, you must include the siren in SECURE mode in Z-Wave.

Here is the command in order to have the sounds (there is no single beep).

After a factory reset of the siren, you gave to put value 8 in configuration property 7 :

service: zwave_js.set_value
    data:
      command_class: "112"
      value: 8
      property: "7"
    target:
      entity_id: switch.sirene

Now here the different sounds :

Chime

service: zwave_js.invoke_cc_api
data:
  method_name: sendReport
  parameters:
    - notificationType: 6
      notificationEvent: 22
  command_class: "113"
target:
  entity_id: switch.sirene

Beep beep

service: zwave_js.invoke_cc_api
    data:
      method_name: sendReport
      parameters:
        - notificationType: 10
          notificationEvent: 4
      command_class: "113"
    target:
      entity_id: switch.sirene

Fire

service: zwave_js.invoke_cc_api
    data:
      method_name: sendReport
      parameters:
        - notificationType: 10
          notificationEvent: 2
      command_class: "113"
    target:
      entity_id: switch.sirene

Ambulance

service: zwave_js.invoke_cc_api
    data:
      method_name: sendReport
      parameters:
        - notificationType: 10
          notificationEvent: 3
      command_class: "113"
    target:
      entity_id: switch.sirene

Police

service: zwave_js.invoke_cc_api
    data:
      method_name: sendReport
      parameters:
        - notificationType: 10
          notificationEvent: 1
      command_class: "113"
    target:
      entity_id: switch.sirene