SDK
SDK Java v2.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

update #

Performs a partial content update on this object.


update(content, [options], [callback]) #

ArgumentsTypeDescription
contentJSON ObjectUser content
optionsJSON ObjectOptional parameters
callbackfunctionOptional callback handling the response

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue

Return Value #

Returns the User object to allow chaining.


Callback Response #

Returns the updated version of this object.

Usage #

JSONObject updateContent = new JSONObject()
  .put("firstname", "My Name Is")
  .put("lastname", "Jonas");
user.update(updateContent, new ResponseListener<User>() {
  @Override
  public void onSuccess(User updatedUser) {
  }
  @Override
  public void onError(JSONObject error) {
  }
});