Problem with setting up deConz remote control

Hi all,
I have a little problem to configure a deConz remote switch…
The switch is correclty configured in Phoscon app… and it works well with the tipical avomation trigged by the event. It toggle a light.
The problem is that the light turn on with the last brightness used, and I would like to light up with a specific brightness. I try this:

action:
service: light.toggle
entity_id: light.salotto
brightness: 200

In this case the light don’t turn on, the automation doesn’t work.
If I cancel the last line, the light turn on with the “casual” brightness.

Where’s the error??

Thank you all… and forgive for my english!

First off all, you don’t have a problem with the deconz remote. It’s the automation.
The service light.toggle doesn’t have a option to set brightness. The service light.turn_on does.

action:
    - service: light.turn_on
      data:
        entity_id: light.salotto
        brightness: 200

So simple… I’ll try!
Thank you so much