Apperyio.User.updateUser(options, [dbId])
Updates Appery.io database user. Returns promise.
Parameters
This function has the following parameters:
Argument | Description |
---|---|
options | Request parameters. |
dbId | Database id. Optional if default database id is set. |
Example
Updating Appery.io database user.
Apperyio.User.updateUser({"username": "test1", "password": "test"}).then(function(result){
alert("success_" + JSON.stringify(result));
},function(error) {
alert("error_" + JSON.stringify(error));
});