Unable to change Huawei ONT Password

Hi,
I am unble to change the password of Huawei router.
In case of SSID, i am able to change this.

What about:

InternetGatewayDevice.UserInterface.X_HW_CLIUserInfo
InternetGatewayDevice.UserInterface.X_HW_WebUserInfo

is this?

const now = Date.Now();

declare(“InternetGatewayDevice.ManagementServer.PeriodicInformInterval”, {value:now}, {value:“21800”});

Hi,

Your script only updates periodic inform time interval. To change login credentials, you must use the path that @jesusjimenez provides.

Regards.

Now i have used this API to change SSID and password but doesnt work
curl -i ‘http://localhost:7557/devices/202BC1-BM632w-000000/tasks?connection_request
-X POST
–data ‘{“name”:“setParameterValues”, “parameterValues”: [[“InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID”, “genieacstest”, “xsd:string”],[“InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.PreSharedKey.1.PreSharedKey”, “testtest”, “xsd:string”]]}’

Try PreSharedKey.1.KeyPassphrase. Also, please use code blocks when you are pasting commands in, it keeps discourse from changing all the quotes to “smart quotes”. You start a code block with three back ticks (```) on a new line, and close it the same way.

curl -i 'http://localhost:7557/devices/202BC1-BM632w-000000/tasks?connection_request'
-X POST
–data '{"name":"setParameterValues", "parameterValues": [["InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID", "genieacstest"],["InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.PreSharedKey.1.KeyPassphrase", "testtest"]]}'

Thanks.
Now it working