Change login username and password
Command to change the user and/or password used for login on the device.
POST /change_login.fcgi
Parameters
- login (string): Username to be used to log in to the device.
- password (string): User password to be used to log in to the device. It must be in plain text, without Hash.
Response
- This call has no return.
Request example
$.ajax({
url: "/change_login.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
login: "WalterWhite",
password: "Heisenberg"
})
});