Autodesk Vault ProfessionalVault API

UpdateGroupInfo Method

Autodesk.Connectivity.WebServicesAdminService

Updates a group and its associations.

Required Permissions

AdminUserUpdate

Syntax

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 GroupInfo

Parameters

NameDescription
groupIdThe ID of the Group to update.
groupNameThe new Group name.
emailDLThe email address for the group.
isActiveIf true, the group.
roleIdArrayAn array of roles for the group. Passing in null will remove all existing roles.
vaultIdArrayAn array of Vault IDs that the group has Passing in null will remove all existing Vault associations.
userIdArrayAn array of child users. Passing in null will remove all existing users.
groupIdArrayAn array of child groups. Passing in null will remove all existing groups.
attributesprofile attributes for this group.

Return Value

The updated GroupInfo object.

See Also