AddGroup Method
Creates a new Group of Users.
Required Permissions
UserCreateSyntax
public Group AddGroup(
System.string groupName,
System.string emailDL,
System.bool isActive,
System.long[] roleIdArray,
System.long[] vaultIdArray,
ProfileAttr[] attributes
)Public Function AddGroup( _
ByVal groupName As System.String, _
ByVal emailDL As System.String, _
ByVal isActive As System.Boolean, _
ByVal roleIdArray() As System.Long, _
ByVal vaultIdArray() As System.Long, _
ByVal attributes() As ProfileAttr _
) As GroupParameters
| Name | Description |
|---|---|
| groupName | The name of the Group. |
| emailDL | The email address of the group. |
| isActive | If true, the group is active. |
| roleIdArray | An array of Role IDs. Users of the Group will automatically inherit the roles. |
| vaultIdArray | An array of Vault IDs that this group is active in. Users of the Group will automatically inherit the Vault access. |
| attributes | Profile Attributes for this group. |
Return Value
The newly created group.