Hello everyone, I'm having trouble doing a curl set configuration using ubus to update my disabled value of wireless interface. Anyone can give me an example?
My steps:

Get a session: curl -d '{ "jsonrpc": "2.0", "id": 1, "method": "call", "params": [ "00000000000000000000000000000000", "session", "login", { "username": "root", "password": secret } ] }'  -g link

curl -s -d '{"jsonrpc":"2.0","id":1,"method":"call","params":
["'$UBUS_SESSION'","uci","set",{"config":"'teste_wireless'","section":"'radio0'",
"values": { "disabled":1}}]}' -g link
What I'm doing wrong? I can get a new ubus session but cant update disabled value to a new value..
It had no effect in my device when i do a uci commit

curl -s -d '{"jsonrpc":"2.0","id":1,"method":"call","params":
["'$UBUS_SESSION'","uci","commit",{"config":"'teste_wireless'"}]}' -g
link

In documentation of wiki in openwrt for uci set we had

uci    set    { "package": "package",
"section": "sname",
"option": "oname",
"value": "value" }