SDK
SDK Javascript v6.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

updateUserMapping #

Updates the internal user storage mapping.


Copied to clipboard!
updateUserMapping(mapping, [options]);

Property Type Description
mapping
object
User collection mapping definition
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 #

An acknowledgment message.

Usage #

Copied to clipboard!
try {
  const response = await kuzzle.security.updateUserMapping({
    properties: {
      firstName: { type: 'text' },
      lastName: { type: 'text' },
      birthDate: {
        type: 'date',
        format: 'yyyy-mm-dd'
      }
    }
  });
  console.log(response);
  /*
  { acknowledged: true }
    */
} catch (e) {
  console.error(e);
}