Create Group
| workmail_create_group | R Documentation | 
Creates a group that can be used in WorkMail by calling the RegisterToWorkMail operation¶
Description¶
Creates a group that can be used in WorkMail by calling the
register_to_work_mail operation.
Usage¶
workmail_create_group(OrganizationId, Name, HiddenFromGlobalAddressList)
Arguments¶
OrganizationId | 
[required] The organization under which the group is to be created.  | 
Name | 
[required] The name of the group.  | 
HiddenFromGlobalAddressList | 
If this parameter is enabled, the group will be hidden from the address book.  | 
Value¶
A list with the following syntax:
list(
  GroupId = "string"
)
Request syntax¶
svc$create_group(
  OrganizationId = "string",
  Name = "string",
  HiddenFromGlobalAddressList = TRUE|FALSE
)