createGroup

Create an empty group

Groups can only be created in Internal Storage, LDAP/Active Directory, and OpenID authorization realms.

Format

udclient [global-args...] [global-flags...]
  createGroup [parameters]

Parameters

Table 1. Parameters
Parameter Type Required Description
group string true Name of the group
description string false Description of the group
authorizationRealm string true Name of the authorization realm. If an OpenID realm, the group name must be properly identified and will not be validated against the OpenID Provider.

Example

udclient -username jsmith -password passwd 
  -weburl https://deployserver.example.com:8443
  createGroup 
  -group group1 
  -authorizationRealm "Internal Security"
Note:
Adding groups to LDAP and SSO realms is deprecated.

Example response

{
  "id": "a5be904f-d65a-41ae-9bfd-0a0384c90eeb",
  "name": "group1",
  "enabled": true
}

Related REST command: Create an empty group.