getUser #
Gets a user.
getUser(kuid, [options]);
Property | Type | Description |
---|---|---|
kuid | string | User kuid |
options | object | Query options |
options #
Property | Type (default) | Description |
---|---|---|
queuable | boolean ( true ) | If true, queues the request during downtime, until connected to Kuzzle again |
Resolves #
The retrieved User
object.
Usage #
try {
const response = await kuzzle.security.getUser('john.doe');
console.log(response);
/*
User {
_id: 'john.doe',
content:
{ profileIds: [ 'default' ],
fullName: 'John Doe',
_kuzzle_info:
{ author: -1,
createdAt: 1561447939790,
updatedAt: null,
updater: null } } }
*/
} catch (e) {
console.error(e);
}
Edit this page on Github(opens new window)