Change color of deconz group from automation?

I can’t find out how I change the color of my deconz group… It works from the Home-Assistant lovelace GUI, but I am not able to change it by automation.

This does nothing:

  action:
  - data:
      data:
        bri: 180
        hue: 43680
        sat: 255
      entity: light.zigbee_soverom
      field: /action
    service: deconz.configure

However I use the same method to dim, and that works:

  action:
  - data:
      data:
        bri_inc: -254
        transitiontime: 254
      entity: light.zigbee_soverom
      field: /action
    service: deconz.configure

I have also tried changing the color by light service with no luck:

  action:
  - data:
      data:
        rgb_color:
        - 200
        - 0
        - 0
      entity: light.zigbee_soverom
    service: light.turn_on

Any help will be good, I feel I have tried all I can do…

Exactly same problem here. Have you figured out something?

This one will set the xy color:

action:
  - service: deconz.configure
    data:
      entity: light.ws_bat_spotlight
      field: "/state"
      data:
        { "xy": [0.6, 0.2] }

In my case, I want to color loop the bulb while holding the right button on Ikea Remote.
Any Ideas