Create a group

You can list one or more members of the new group in the 'users' array, or you can leave the array blank to create an empty group.

Request

PUT https://{hostname}:{port}
  /cli/group/import
This command takes a JSON request string or file. Use the following template for the request:
{
  "authorizationRealm": "Authorization realm name",
  "name": "Group name",
  "users": ["User names"]
}

Example JSON request

{
  "name": "group1",
  "authorizationRealm": "Internal Security",
  "users": [
    "jdoe",
    "jsmith"
  ]
}

Example response

{
  "id": "9dc44e77-e241-480e-8fbb-50f84b64b24b",
  "name": "group1",
  "enabled": true
}

Related CLI command: importGroup.


Feedback