Zigbee2mqtt light configuration

HI all,
I have a new zigbee light “Classic B40 TW - LIGHTIFY - OSRAM”
In zigbee2mqtt I see every state and I can control the light.

I have installed the zigbee2mqtt add-on and some other tigbee devices are working very well.
For this light I don´t see any controls:
image

in Configuration.yaml i tried to add this light:

mqtt:
  - light:
      name: "Yannick Licht 1"
      state_topic: "zigbee2mqtt/Yannick-LED2/status"
      command_topic: "zigbee2mqtt/Yannick-LED2/switch"
      brightness_state_topic: 'zigbee2mqtt/Yannick-LED2/brightness'
      brightness_command_topic: 'zigbee2mqtt/Yannick-LED2/brightness/set'
      qos: 0
      payload_on: "ON"
      payload_off: "OFF"
      optimistic: false

I tried to turn on the light via services, how ever nothing happens:

I tried to follow this link: OSRAM AB32840 control via MQTT | Zigbee2MQTT

Can someone give me a hint what I need to change?

Solution:

call service

- service: mqtt.publish
        data:
          qos: "0"
          retain: false
          topic: zigbee2mqtt/Yannick-LED2/set
          payload: "{\"state\": \"toggle\"}"