mDeleteUsers #
Deletes multiple users.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/users/_mDelete[?refresh=wait_for]
Method: POST
Body:
{
"ids": ["kuid1", "kuid2", "..."]
}
Other protocols #
{
"controller": "security",
"action": "mDeleteUsers",
"body": {
"ids": ["kuid1", "kuid2", "..."]
}
}
Arguments #
Optional: #
refresh
: if set towait_for
, Kuzzle will not respond until the deletions are indexed
Body properties #
ids
: an array of user kuids to delete (default:"wait_for"
)
Response #
Returns an array of successfully deleted users.
{
"status": 200,
"error": null,
"action": "mDeleteUsers",
"controller": "security",
"requestId": "<unique request identifier>",
"result": [
"kuid1",
"kuid2",
"..."
]
}
}
Edit this page on Github(opens new window)