Autodesk Vault ProfessionalVault API

AddGroup Method

Autodesk.Connectivity.WebServicesAdminService

Creates a new Group of Users.

Required Permissions

UserCreate

Syntax

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 Group

Parameters

NameDescription
groupNameThe name of the Group.
emailDLThe email address of the group.
isActiveIf true, the group is active.
roleIdArrayAn array of Role IDs. Users of the Group will automatically inherit the roles.
vaultIdArrayAn array of Vault IDs that this group is active in. Users of the Group will automatically inherit the Vault access.
attributesProfile Attributes for this group.

Return Value

The newly created group.

See Also