Problems to update parameters by provision script

I’m trying to update some parameters in a provision scripts, my code is like this:

declare(
  'InternetGatewayDevice.LANDevice.1.WiFi.*', 
  { path: now }
)

I’m testing sending a 6 CONNECTION REQUEST, but the values are note updated. When I try update manually it works.

Because you are telling GenieACS to refresh the path, not the value.

declare('InternetGatewayDevice.LANDevice.1.WiFi.*', { value: now });

Ok, thanks for answer!