Index BlackBerry Workspaces SDK
BlackBerry Workspaces JSON
AddMembersToGroupWithGroup
Add multiple users to a group and add group information.
Parameters
Name Type Description

emailMessage

String

emailSubject

String

groupName

String

Current group name

isSendMail

boolean

Default value: true

managersList

List(AddMemberToGroup)

List of managers to add to group.

membersList

List(AddMemberToGroup)

List of members to add to group.

roomGuid

String

The guid of the workspace containing the group. Provide either it or roomId, but not both.

roomId

Integer

The id of the workspace containing the group. Provide either it or roomGuid, but not both.

Json Format
{
groupName: String,
roomId: Integer,
roomGuid: String,
membersList: List(
{
entity:
{
address: String,
entityType: EntityType
}
}),
managersList: List(
{
entity:
{
address: String,
entityType: EntityType
}
}),
emailSubject: String,
emailMessage: String,
isSendMail: Boolean
}