[This is preliminary documentation and is subject to change.]
            Creates the group or the organization and invites/adds users into it.
            
    Namespace: 
   OfficeClip.DBLayer.AccountAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public int CreateGroup( string userList, string groupName, int tzId, ConfigureInfo session, bool isSendEmail, out int groupId )  | 
| Visual Basic (Declaration) | 
|---|
Public Function CreateGroup ( _ userList As String, _ groupName As String, _ tzId As Integer, _ session As ConfigureInfo, _ isSendEmail As Boolean, _ <OutAttribute> ByRef groupId As Integer _ ) As Integer  | 
| Visual C++ | 
|---|
public: int CreateGroup( String^ userList, String^ groupName, int tzId, ConfigureInfo^ session, bool isSendEmail, [OutAttribute] int% groupId )  | 
Parameters
- userList
 - Type: System..::.String
The list of comma separated userIds of the users to be added. 
- groupName
 - Type: System..::.String
The name of the group. 
- tzId
 - Type: System..::.Int32
The timezone id for the group 
- session
 - Type: OfficeClip.Utils..::.ConfigureInfo
The current login session 
- isSendEmail
 - Type: System..::.Boolean
Is the email supposed to be sent 
- groupId
 - Type: System..::.Int32%
The unique id of the organization 
