SDK
SDK Javascript v7.x
2

getUser #

Gets a user.


Copied to clipboard!
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 #

Copied to clipboard!
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);
}