UpdateGroupInfo Method
Updates a group and its associations.
Required Permissions
AdminUserUpdateSyntax
public GroupInfo UpdateGroupInfo(
System.long groupId,
System.string groupName,
System.string emailDL,
System.bool isActive,
System.long[] roleIdArray,
System.long[] vaultIdArray,
System.long[] userIdArray,
System.long[] groupIdArray,
ProfileAttr[] attributes
)Public Function UpdateGroupInfo( _
ByVal groupId As System.Long, _
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 userIdArray() As System.Long, _
ByVal groupIdArray() As System.Long, _
ByVal attributes() As ProfileAttr _
) As GroupInfoParameters
| Name | Description |
|---|---|
| groupId | The ID of the Group to update. |
| groupName | The new Group name. |
| emailDL | The email address for the group. |
| isActive | If true, the group. |
| roleIdArray | An array of roles for the group. Passing in null will remove all existing roles. |
| vaultIdArray | An array of Vault IDs that the group has Passing in null will remove all existing Vault associations. |
| userIdArray | An array of child users. Passing in null will remove all existing users. |
| groupIdArray | An array of child groups. Passing in null will remove all existing groups. |
| attributes | profile attributes for this group. |
Return Value
The updated GroupInfo object.