Help with service call for input_select.next_option

Hi everyone:
I’m trying to call service from “Developer tools” to change option on input_select component but there is no documentation nor description for this service call and I’m constantly getting JSON syntax error.

I tried obvious ones:
{‘entity_id’ : ‘input_select.light’}
{‘data’ : {‘entity_id’ : ‘input_select.light’}}
but nothing works

Any tips regarding this

Single quotes are not valid JSON, perhaps that’s your only issue.

{“entity_id”:“input_select.light”}

this will work if input_select.light is the valid entity_id name of your input_select

YES!!! that was it. Thank a lot! :slight_smile: