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.

getProfileMapping #

Gets the mapping of the internal security profiles collection.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/profiles/_mapping
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "security",
  "action": "getProfileMapping"
}

Response #

Returns the internal profiles mapping, using Elasticsearch mapping format.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "security",
  "action": "getProfileMapping",
  "requestId": "<unique request identifier>",
  "result": {
    "mapping": {
      // mapping
    }
  }
}