Core
API v2.x
2

updateUserMapping #

Updates the internal user storage mapping.


Query Syntax #

HTTP #

URL: http://kuzzle:7512/users/_mapping Method: PUT Body:
{  "properties": {  // mapping  } }

Other protocols #

{  "controller": "security",  "action": "updateUserMapping",   "body": {  "properties": {  // mapping  }  } }

Body properties #


Response #

Returns the updated mappings.

{  "status": 200,  "error": null,  "action": "updateUserMapping",  "controller": "security",  "requestId": "<unique request identifier>",  "result": {  // mappings  }, }