Import a user from LDAP

This command adds one or more users from an LDAP realm to the server.

Request

PUT https://{hostname}:{port}
  /cli/user/import?{parameters}
Table 1. Request parameters
Parameter Type Required Description
user string true Name or pattern of the users to be imported. Supports wildcard character *.
authenticationRealm string true Authentication realm name or ID
This command takes a JSON request string or file. Use the following template for the request:
{
  "authenticationRealm": "Authentication realm ID",
  "email": "Email address",
  "name": "User name",
  "password": "Password"
}

Related CLI command: importLdapUser.


Feedback