getUser #
Gets a user.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/users/<_id>
Method: GET
Other protocols #
{
"controller": "security",
"action": "getUser",
"_id": "<kuid>"
}
Arguments #
_id
: user kuid
Response #
Returns the user information:
_id
: user kuid_source
: user description
{
"status": 200,
"error": null,
"controller": "security",
"action": "getUser",
"requestId": "<unique request identifier>",
"result": {
"_id": "<kuid>",
"_source": {
"profileIds": ["<profileId>"]
}
}
}
Edit this page on Github(opens new window)