Core
API v1.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 #

Deletes a security profile.

An error is returned if the profile is still in use.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_profiles/<_id>[?refresh=wait_for]
Method: DELETE

Other protocols #

Copied to clipboard!
{
  "controller": "security",
  "action": "deleteProfile",
  "_id": "<profileId>"
}

Arguments #

  • _id: profile identifier

Optional: #

  • refresh: if set to wait_for, Kuzzle will not respond until the profile deletion is indexed

Response #

Returns the deleted profile identifier.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "result": {
    "_id": "<profileId>"
  },
  "action": "deleteProfile",
  "controller": "security",
  "requestId": "<unique request identifier>"
}