
flexrep.configurationTargetGetUserId( cfg as element(flexrep.configuration), target-id as (Number|String) ) as (Number|String)?
Get the user ID associated with a target, if one exists. Only query-based targets have an associated user ID.
| Parameters | |
|---|---|
| cfg | The replication configuration. | 
| target-id | The target ID. | 
const flexrep = require('/MarkLogic/flexrep');
  // Obtain the domain ID from the database used by the Master to enable CPF.
  const domain = xdmp.eval(
    'const dom = require("/MarkLogic/cpf/domains");' +
      'fn.data(dom.get("Default Master").xpath("//dom:domain-id"));',
       null,
         {
          'database' : xdmp.database('Triggers')
         });
  const cfg = flexrep.configurationGet(domain, true);
  const targetId = flexrep.configurationTargetGetId(cfg, 'Replica');
flexrep.configurationTargetGetUserId(cfg, targetId);
// Returns the user ID associated with a target, if one exists.