replaceUser #
Replaces an existing user.
replaceUser(id, content, [options], [callback]) #
Arguments | Type | Description |
---|---|---|
id | string | Unique user identifier |
content | JSON Object | A plain JSON object representing the user, should contain the mandatory profileIds field |
options | string | (Optional) Optional arguments |
callback | function | (Optional) Callback handling the response |
Options #
Filter | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
refresh | string | If set to wait_for , Kuzzle will wait for the persistence layer to finish indexing (available with Elasticsearch 5.x and above) | undefined |
Return Value #
Returns the Security
object to allow chaining.
Callback Response #
Returns a User object.
Usage #
JSONObject newContent = new JSONObject()
.put("profileIds", new JSONArray()
.put("admin")
)
.put("firstname", "My Name Is")
.put("lastname", "Jonas");
kuzzle
.security
.replaceUser("User ID", newContent, new ResponseListener<User>() {
@Override
public void onSuccess(User user) {
}
@Override
public void onError(JSONObject error) {
}
});
Edit this page on Github(opens new window)