Describe Group
workmail_describe_group | R Documentation |
Returns the data available for the group¶
Description¶
Returns the data available for the group.
Usage¶
workmail_describe_group(OrganizationId, GroupId)
Arguments¶
OrganizationId |
[required] The identifier for the organization under which the group exists. |
GroupId |
[required] The identifier for the group to be described. The identifier can accept GroupId, Groupname, or email. The following identity formats are available:
|
Value¶
A list with the following syntax:
list(
GroupId = "string",
Name = "string",
Email = "string",
State = "ENABLED"|"DISABLED"|"DELETED",
EnabledDate = as.POSIXct(
"2015-01-01"
),
DisabledDate = as.POSIXct(
"2015-01-01"
),
HiddenFromGlobalAddressList = TRUE|FALSE
)
Request syntax¶
svc$describe_group(
OrganizationId = "string",
GroupId = "string"
)