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.

deleteProfile #

Delete the provided profile.

There is a small delay between the time a profile is deleted and it being reflected in the search layer (usually a couple of seconds).
That means that a profile that was just deleted might still be returned by the searchProfiles function.


deleteProfile(id, [options], [callback]) #

Arguments Type Description
id string Unique profile identifier to delete
options JSON Object Optional parameters
callback function (Optional) Callback handling the response

Options #

Option Type Description Default
queuable boolean Make this request queuable or not true
refresh string If set to wait_for, Kuzzle will wait 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 the ID of the security profile that has been deleted.

Usage #

Copied to clipboard!
kuzzle
  .security
  .deleteProfile("myprofile", new ResponseListener<String>() {
    @Override
    public void onSuccess(String profileName) {
    }
    @Override
    public void onError(JSONObject error) {
    }
  });

Callback response

Copied to clipboard!
"deleted profile identifier"