importGroup

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.

Format

udclient [global-args...] [global-flags...]
  importGroup [JSON file]

Parameters

None.

Template

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

udclient -username admin -password admin 
  -weburl https://myserver.example.com:8443
  importGroup newGroup.json

Example JSON request

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

Example response

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

Related REST command: Create a group.


Feedback