检索和更新 Google 网上论坛的设置
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
更新和检索 Google 群组设置时,API 请求需要提供创建访问凭据中所述的身份验证和 API 密钥。如需了解详情,请参阅了解身份验证和授权。
更新群组的所有设置
如需更新组的设置,请在以下 PUT
HTTP 请求中添加 Authorization
标头和 API 密钥:
PUT https://www.googleapis.com/groups/v1/groups/GROUP_ID
将 GROUP_ID
替换为群组的 ID。例如,以下命令会更新 salesgroup@example.com 群组设置:
PUT https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
请求正文采用 JSON 格式。以下示例显示了所有可能的设置:
{
"kind": "groupsSettings#groups",
"email": "salesgroup@example.com",
"name": "Sales Group",
"description": "This is the sales group",
"whoCanAdd": "ALL_MANAGERS_CAN_ADD",
"whoCanJoin": "INVITED_CAN_JOIN",
"whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW",
"whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW",
"whoCanInvite": "ALL_MANAGERS_CAN_INVITE",
"allowExternalMembers": "false",
"whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST",
"allowWebPosting": "true",
"primaryLanguage": "en",
"maxMessageBytes": 10240,
"isArchived": "true",
"archiveOnly": "false",
"messageModerationLevel": "MODERATE_NONE",
"spamModerationLevel": "ALLOW",
"replyTo": "REPLY_TO_IGNORE",
"customReplyTo": "sales@example.com",
"includeCustomFooter": "true",
"customFooterText": "This messages is from the Sales Group at example.com",
"sendMessageDenyNotification": "true",
"defaultMessageDenyNotificationText": "Your Message has been denied.",
"showInGroupDirectory": "false",
"allowGoogleCommunication": "false",
"membersCanPostAsTheGroup": "false",
"messageDisplayFont": "DEFAULT_FONT",
"includeInGlobalAddressList": "false",
"whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE",
"whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT",
"whoCanAddReferences": "ALL_MEMBERS",
"whoCanAssignTopics": "NONE",
"whoCanUnassignTopic": "NONE",
"whoCanTakeTopics": "NONE",
"whoCanMarkDuplicate": "NONE",
"whoCanMarkNoResponseNeeded": "NONE",
"whoCanMarkFavoriteReplyOnAnyTopic": "NONE",
"whoCanMarkFavoriteReplyOnOwnTopic": "NONE",
"whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE",
"whoCanEnterFreeFormTags": "NONE",
"whoCanModifyTagsAndCategories": "NONE",
"favoriteRepliesOnTop": "false",
"whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE",
"whoCanBanUsers": "OWNERS_AND_MANAGERS",
"whoCanModifyMembers": "OWNERS_AND_MANAGERS",
"whoCanApproveMessages": "OWNERS_ONLY",
"whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS",
"whoCanDeleteTopics": "OWNERS_AND_MANAGERS",
"whoCanLockTopics": "OWNERS_AND_MANAGERS",
"whoCanMoveTopicsIn": "NONE",
"whoCanMoveTopicsOut": "NONE",
"whoCanPostAnnouncements": "NONE",
"whoCanHideAbuse": "OWNERS_AND_MANAGERS",
"whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS",
"whoCanModerateMembers": "OWNERS_AND_MANAGERS",
"whoCanModerateContent": "OWNERS_ONLY",
"whoCanAssistContent": "ALL_MEMBERS",
"customRolesEnabledForSettingsToBeMerged": "false",
"enableCollaborativeInbox": "false",
"whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER",
"defaultSender": "DEFAULT_SELF"
}
成功的响应会返回 200
HTTP 状态代码。响应将返回状态代码以及更新后的群组设置。如需详细了解这些设置,请参阅 API 参考文档。
以下示例显示了 JSON 响应:
{
"kind": "groupsSettings#groups",
"email": "salesgroup@example.com",
"name": "Sales Group",
"description": "This is the sales group",
"whoCanAdd": "ALL_MANAGERS_CAN_ADD",
"whoCanJoin": "INVITED_CAN_JOIN",
"whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW",
"whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW",
"whoCanInvite": "ALL_MANAGERS_CAN_INVITE",
"allowExternalMembers": "false",
"whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST",
"allowWebPosting": "true",
"primaryLanguage": "en",
"maxMessageBytes": 10240,
"isArchived": "true",
"archiveOnly": "false",
"messageModerationLevel": "MODERATE_NONE",
"spamModerationLevel": "ALLOW",
"replyTo": "REPLY_TO_IGNORE",
"customReplyTo": "sales@example.com",
"includeCustomFooter": "true",
"customFooterText": "This messages is from the Sales Group at example.com",
"sendMessageDenyNotification": "true",
"defaultMessageDenyNotificationText": "Your Message has been denied.",
"showInGroupDirectory": "false",
"allowGoogleCommunication": "false",
"membersCanPostAsTheGroup": "false",
"messageDisplayFont": "DEFAULT_FONT",
"includeInGlobalAddressList": "false",
"whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE",
"whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT",
"whoCanAddReferences": "ALL_MEMBERS",
"whoCanAssignTopics": "NONE",
"whoCanUnassignTopic": "NONE",
"whoCanTakeTopics": "NONE",
"whoCanMarkDuplicate": "NONE",
"whoCanMarkNoResponseNeeded": "NONE",
"whoCanMarkFavoriteReplyOnAnyTopic": "NONE",
"whoCanMarkFavoriteReplyOnOwnTopic": "NONE",
"whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE",
"whoCanEnterFreeFormTags": "NONE",
"whoCanModifyTagsAndCategories": "NONE",
"favoriteRepliesOnTop": "false",
"whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE",
"whoCanBanUsers": "OWNERS_AND_MANAGERS",
"whoCanModifyMembers": "OWNERS_AND_MANAGERS",
"whoCanApproveMessages": "OWNERS_ONLY",
"whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS",
"whoCanDeleteTopics": "OWNERS_AND_MANAGERS",
"whoCanLockTopics": "OWNERS_AND_MANAGERS",
"whoCanMoveTopicsIn": "NONE",
"whoCanMoveTopicsOut": "NONE",
"whoCanPostAnnouncements": "NONE",
"whoCanHideAbuse": "OWNERS_AND_MANAGERS",
"whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS",
"whoCanModerateMembers": "OWNERS_AND_MANAGERS",
"whoCanModerateContent": "OWNERS_ONLY",
"whoCanAssistContent": "ALL_MEMBERS",
"customRolesEnabledForSettingsToBeMerged": "false",
"enableCollaborativeInbox": "false",
"whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER",
"defaultSender": "DEFAULT_SELF"
}
更新群组的某些设置
如果要更新这些设置中的子集,请使用 PATCH
HTTP 请求进行部分更新。
PATCH https://www.googleapis.com/groups/v1/groups/GROUP_ID
检索群组的设置
如需检索群组的设置,请在以下 GET
HTTP 请求中添加 Authorization
标头:
GET https://www.googleapis.com/groups/v1/groups/groupUniqueId
以下示例会检索 salesgroup@example.com 群组设置:
GET https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
成功的响应会返回 200
HTTP 状态代码。除了状态代码以外,响应还会返回 salesgroup@example.com 群组的设置。如需详细了解这些设置,请参阅 API 参考文档。
以下示例显示了 JSON 响应:
{
"kind": "groupsSettings#groups",
"email": "salesgroup@example.com",
"name": "Sales Group",
"description": "This is the sales group",
"whoCanAdd": "ALL_MANAGERS_CAN_ADD",
"whoCanJoin": "INVITED_CAN_JOIN",
"whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW",
"whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW",
"whoCanInvite": "ALL_MANAGERS_CAN_INVITE",
"allowExternalMembers": "false",
"whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST",
"allowWebPosting": "true",
"primaryLanguage": "en",
"maxMessageBytes": 10240,
"isArchived": "true",
"archiveOnly": "false",
"messageModerationLevel": "MODERATE_NONE",
"spamModerationLevel": "ALLOW",
"replyTo": "REPLY_TO_IGNORE",
"customReplyTo": "sales@example.com",
"includeCustomFooter": "true",
"customFooterText": "This messages is from the Sales Group at example.com",
"sendMessageDenyNotification": "true",
"defaultMessageDenyNotificationText": "Your Message has been denied.",
"showInGroupDirectory": "false",
"allowGoogleCommunication": "false",
"membersCanPostAsTheGroup": "false",
"messageDisplayFont": "DEFAULT_FONT",
"includeInGlobalAddressList": "false",
"whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE",
"whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT",
"whoCanAddReferences": "ALL_MEMBERS",
"whoCanAssignTopics": "NONE",
"whoCanUnassignTopic": "NONE",
"whoCanTakeTopics": "NONE",
"whoCanMarkDuplicate": "NONE",
"whoCanMarkNoResponseNeeded": "NONE",
"whoCanMarkFavoriteReplyOnAnyTopic": "NONE",
"whoCanMarkFavoriteReplyOnOwnTopic": "NONE",
"whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE",
"whoCanEnterFreeFormTags": "NONE",
"whoCanModifyTagsAndCategories": "NONE",
"favoriteRepliesOnTop": "false",
"whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE",
"whoCanBanUsers": "OWNERS_AND_MANAGERS",
"whoCanModifyMembers": "OWNERS_AND_MANAGERS",
"whoCanApproveMessages": "OWNERS_ONLY",
"whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS",
"whoCanDeleteTopics": "OWNERS_AND_MANAGERS",
"whoCanLockTopics": "OWNERS_AND_MANAGERS",
"whoCanMoveTopicsIn": "NONE",
"whoCanMoveTopicsOut": "NONE",
"whoCanPostAnnouncements": "NONE",
"whoCanHideAbuse": "OWNERS_AND_MANAGERS",
"whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS",
"whoCanModerateMembers": "OWNERS_AND_MANAGERS",
"whoCanModerateContent": "OWNERS_ONLY",
"whoCanAssistContent": "ALL_MEMBERS",
"customRolesEnabledForSettingsToBeMerged": "false",
"enableCollaborativeInbox": "false",
"whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER",
"defaultSender": "DEFAULT_SELF"
}
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-29。
[null,null,["最后更新时间 (UTC):2025-08-29。"],[],[],null,["# Retrieve & update settings for Google Groups\n\nWhen updating and retrieving settings for Google Groups, an API request requires the\nauthentication and API key as described in\n[Create access credentials](/workspace/guides/create-credentials). For more information,\nsee [Learn about authentication \\& authorization](/workspace/guides/auth-overview).\n\nUpdate all settings for a group\n-------------------------------\n\nTo update a group's settings, include the `Authorization` header and API key in the\nfollowing `PUT` HTTP request: \n\n```\nPUT https://www.googleapis.com/groups/v1/groups/GROUP_ID\n```\n\nReplace \u003cvar translate=\"no\"\u003eGROUP_ID\u003c/var\u003e with the ID for the group---for example, the following\nupdates the salesgroup@example.com group settings: \n\n```\nPUT https://www.googleapis.com/groups/v1/groups/salesgroup@example.com\n```\n\nThe request body is in the JSON format. The following example shows all possible settings: \n\n```transact-sql\n{\n \"kind\": \"groupsSettings#groups\",\n \"email\": \"salesgroup@example.com\",\n \"name\": \"Sales Group\",\n \"description\": \"This is the sales group\",\n \"whoCanAdd\": \"ALL_MANAGERS_CAN_ADD\",\n \"whoCanJoin\": \"INVITED_CAN_JOIN\",\n \"whoCanViewMembership\": \"ALL_IN_DOMAIN_CAN_VIEW\",\n \"whoCanViewGroup\": \"ALL_IN_DOMAIN_CAN_VIEW\",\n \"whoCanInvite\": \"ALL_MANAGERS_CAN_INVITE\",\n \"allowExternalMembers\": \"false\",\n \"whoCanPostMessage\": \"ALL_IN_DOMAIN_CAN_POST\",\n \"allowWebPosting\": \"true\",\n \"primaryLanguage\": \"en\",\n \"maxMessageBytes\": 10240,\n \"isArchived\": \"true\",\n \"archiveOnly\": \"false\",\n \"messageModerationLevel\": \"MODERATE_NONE\",\n \"spamModerationLevel\": \"ALLOW\",\n \"replyTo\": \"REPLY_TO_IGNORE\",\n \"customReplyTo\": \"sales@example.com\",\n \"includeCustomFooter\": \"true\",\n \"customFooterText\": \"This messages is from the Sales Group at example.com\",\n \"sendMessageDenyNotification\": \"true\",\n \"defaultMessageDenyNotificationText\": \"Your Message has been denied.\",\n \"showInGroupDirectory\": \"false\",\n \"allowGoogleCommunication\": \"false\",\n \"membersCanPostAsTheGroup\": \"false\",\n \"messageDisplayFont\": \"DEFAULT_FONT\",\n \"includeInGlobalAddressList\": \"false\",\n \"whoCanLeaveGroup\": \"ALL_MEMBERS_CAN_LEAVE\",\n \"whoCanContactOwner\": \"ALL_IN_DOMAIN_CAN_CONTACT\",\n \"whoCanAddReferences\": \"ALL_MEMBERS\",\n \"whoCanAssignTopics\": \"NONE\",\n \"whoCanUnassignTopic\": \"NONE\",\n \"whoCanTakeTopics\": \"NONE\",\n \"whoCanMarkDuplicate\": \"NONE\",\n \"whoCanMarkNoResponseNeeded\": \"NONE\",\n \"whoCanMarkFavoriteReplyOnAnyTopic\": \"NONE\",\n \"whoCanMarkFavoriteReplyOnOwnTopic\": \"NONE\",\n \"whoCanUnmarkFavoriteReplyOnAnyTopic\": \"NONE\",\n \"whoCanEnterFreeFormTags\": \"NONE\",\n \"whoCanModifyTagsAndCategories\": \"NONE\",\n \"favoriteRepliesOnTop\": \"false\",\n \"whoCanApproveMembers\": \"ALL_MANAGERS_CAN_APPROVE\",\n \"whoCanBanUsers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModifyMembers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanApproveMessages\": \"OWNERS_ONLY\",\n \"whoCanDeleteAnyPost\": \"OWNERS_AND_MANAGERS\",\n \"whoCanDeleteTopics\": \"OWNERS_AND_MANAGERS\",\n \"whoCanLockTopics\": \"OWNERS_AND_MANAGERS\",\n \"whoCanMoveTopicsIn\": \"NONE\",\n \"whoCanMoveTopicsOut\": \"NONE\",\n \"whoCanPostAnnouncements\": \"NONE\",\n \"whoCanHideAbuse\": \"OWNERS_AND_MANAGERS\",\n \"whoCanMakeTopicsSticky\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModerateMembers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModerateContent\": \"OWNERS_ONLY\",\n \"whoCanAssistContent\": \"ALL_MEMBERS\",\n \"customRolesEnabledForSettingsToBeMerged\": \"false\",\n \"enableCollaborativeInbox\": \"false\",\n \"whoCanDiscoverGroup\": \"ALL_IN_DOMAIN_CAN_DISCOVER\",\n \"defaultSender\": \"DEFAULT_SELF\"\n}\n```\n\nA successful response returns a\n`200` HTTP status code. Along with the status code, the response returns the updated\ngroup settings. For more information about these settings see the\n[API reference](/workspace/admin/groups-settings/v1/reference).\n\nThe following example shows the JSON response: \n\n```transact-sql\n{\n \"kind\": \"groupsSettings#groups\",\n \"email\": \"salesgroup@example.com\",\n \"name\": \"Sales Group\",\n \"description\": \"This is the sales group\",\n \"whoCanAdd\": \"ALL_MANAGERS_CAN_ADD\",\n \"whoCanJoin\": \"INVITED_CAN_JOIN\",\n \"whoCanViewMembership\": \"ALL_IN_DOMAIN_CAN_VIEW\",\n \"whoCanViewGroup\": \"ALL_IN_DOMAIN_CAN_VIEW\",\n \"whoCanInvite\": \"ALL_MANAGERS_CAN_INVITE\",\n \"allowExternalMembers\": \"false\",\n \"whoCanPostMessage\": \"ALL_IN_DOMAIN_CAN_POST\",\n \"allowWebPosting\": \"true\",\n \"primaryLanguage\": \"en\",\n \"maxMessageBytes\": 10240,\n \"isArchived\": \"true\",\n \"archiveOnly\": \"false\",\n \"messageModerationLevel\": \"MODERATE_NONE\",\n \"spamModerationLevel\": \"ALLOW\",\n \"replyTo\": \"REPLY_TO_IGNORE\",\n \"customReplyTo\": \"sales@example.com\",\n \"includeCustomFooter\": \"true\",\n \"customFooterText\": \"This messages is from the Sales Group at example.com\",\n \"sendMessageDenyNotification\": \"true\",\n \"defaultMessageDenyNotificationText\": \"Your Message has been denied.\",\n \"showInGroupDirectory\": \"false\",\n \"allowGoogleCommunication\": \"false\",\n \"membersCanPostAsTheGroup\": \"false\",\n \"messageDisplayFont\": \"DEFAULT_FONT\",\n \"includeInGlobalAddressList\": \"false\",\n \"whoCanLeaveGroup\": \"ALL_MEMBERS_CAN_LEAVE\",\n \"whoCanContactOwner\": \"ALL_IN_DOMAIN_CAN_CONTACT\",\n \"whoCanAddReferences\": \"ALL_MEMBERS\",\n \"whoCanAssignTopics\": \"NONE\",\n \"whoCanUnassignTopic\": \"NONE\",\n \"whoCanTakeTopics\": \"NONE\",\n \"whoCanMarkDuplicate\": \"NONE\",\n \"whoCanMarkNoResponseNeeded\": \"NONE\",\n \"whoCanMarkFavoriteReplyOnAnyTopic\": \"NONE\",\n \"whoCanMarkFavoriteReplyOnOwnTopic\": \"NONE\",\n \"whoCanUnmarkFavoriteReplyOnAnyTopic\": \"NONE\",\n \"whoCanEnterFreeFormTags\": \"NONE\",\n \"whoCanModifyTagsAndCategories\": \"NONE\",\n \"favoriteRepliesOnTop\": \"false\",\n \"whoCanApproveMembers\": \"ALL_MANAGERS_CAN_APPROVE\",\n \"whoCanBanUsers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModifyMembers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanApproveMessages\": \"OWNERS_ONLY\",\n \"whoCanDeleteAnyPost\": \"OWNERS_AND_MANAGERS\",\n \"whoCanDeleteTopics\": \"OWNERS_AND_MANAGERS\",\n \"whoCanLockTopics\": \"OWNERS_AND_MANAGERS\",\n \"whoCanMoveTopicsIn\": \"NONE\",\n \"whoCanMoveTopicsOut\": \"NONE\",\n \"whoCanPostAnnouncements\": \"NONE\",\n \"whoCanHideAbuse\": \"OWNERS_AND_MANAGERS\",\n \"whoCanMakeTopicsSticky\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModerateMembers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModerateContent\": \"OWNERS_ONLY\",\n \"whoCanAssistContent\": \"ALL_MEMBERS\",\n \"customRolesEnabledForSettingsToBeMerged\": \"false\",\n \"enableCollaborativeInbox\": \"false\",\n \"whoCanDiscoverGroup\": \"ALL_IN_DOMAIN_CAN_DISCOVER\",\n \"defaultSender\": \"DEFAULT_SELF\"\n}\n```\n\nUpdate some settings for a group\n--------------------------------\n\nIf you want to update a subset of these settings, use the `PATCH` HTTP request for\na partial update. \n\n```\n PATCH https://www.googleapis.com/groups/v1/groups/GROUP_ID\n \n```\n\nRetrieve settings for a group\n-----------------------------\n\nTo retrieve a group's settings, include the `Authorization` header in the\nfollowing `GET` HTTP request: \n\n```\nGET https://www.googleapis.com/groups/v1/groups/groupUniqueId\n```\n\nThe following example retrieves the salesgroup@example.com group settings: \n\n```\nGET https://www.googleapis.com/groups/v1/groups/salesgroup@example.com\n```\n\nA successful response returns a `200` HTTP status code. Along with the status\ncode, the response returns the salesgroup@example.com group's settings. For more information about\nthese settings see the [API reference](/workspace/admin/groups-settings/v1/reference).\n\nThe following example shows the JSON response: \n\n```transact-sql\n{\n \"kind\": \"groupsSettings#groups\",\n \"email\": \"salesgroup@example.com\",\n \"name\": \"Sales Group\",\n \"description\": \"This is the sales group\",\n \"whoCanAdd\": \"ALL_MANAGERS_CAN_ADD\",\n \"whoCanJoin\": \"INVITED_CAN_JOIN\",\n \"whoCanViewMembership\": \"ALL_IN_DOMAIN_CAN_VIEW\",\n \"whoCanViewGroup\": \"ALL_IN_DOMAIN_CAN_VIEW\",\n \"whoCanInvite\": \"ALL_MANAGERS_CAN_INVITE\",\n \"allowExternalMembers\": \"false\",\n \"whoCanPostMessage\": \"ALL_IN_DOMAIN_CAN_POST\",\n \"allowWebPosting\": \"true\",\n \"primaryLanguage\": \"en\",\n \"maxMessageBytes\": 10240,\n \"isArchived\": \"true\",\n \"archiveOnly\": \"false\",\n \"messageModerationLevel\": \"MODERATE_NONE\",\n \"spamModerationLevel\": \"ALLOW\",\n \"replyTo\": \"REPLY_TO_IGNORE\",\n \"customReplyTo\": \"sales@example.com\",\n \"includeCustomFooter\": \"true\",\n \"customFooterText\": \"This messages is from the Sales Group at example.com\",\n \"sendMessageDenyNotification\": \"true\",\n \"defaultMessageDenyNotificationText\": \"Your Message has been denied.\",\n \"showInGroupDirectory\": \"false\",\n \"allowGoogleCommunication\": \"false\",\n \"membersCanPostAsTheGroup\": \"false\",\n \"messageDisplayFont\": \"DEFAULT_FONT\",\n \"includeInGlobalAddressList\": \"false\",\n \"whoCanLeaveGroup\": \"ALL_MEMBERS_CAN_LEAVE\",\n \"whoCanContactOwner\": \"ALL_IN_DOMAIN_CAN_CONTACT\",\n \"whoCanAddReferences\": \"ALL_MEMBERS\",\n \"whoCanAssignTopics\": \"NONE\",\n \"whoCanUnassignTopic\": \"NONE\",\n \"whoCanTakeTopics\": \"NONE\",\n \"whoCanMarkDuplicate\": \"NONE\",\n \"whoCanMarkNoResponseNeeded\": \"NONE\",\n \"whoCanMarkFavoriteReplyOnAnyTopic\": \"NONE\",\n \"whoCanMarkFavoriteReplyOnOwnTopic\": \"NONE\",\n \"whoCanUnmarkFavoriteReplyOnAnyTopic\": \"NONE\",\n \"whoCanEnterFreeFormTags\": \"NONE\",\n \"whoCanModifyTagsAndCategories\": \"NONE\",\n \"favoriteRepliesOnTop\": \"false\",\n \"whoCanApproveMembers\": \"ALL_MANAGERS_CAN_APPROVE\",\n \"whoCanBanUsers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModifyMembers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanApproveMessages\": \"OWNERS_ONLY\",\n \"whoCanDeleteAnyPost\": \"OWNERS_AND_MANAGERS\",\n \"whoCanDeleteTopics\": \"OWNERS_AND_MANAGERS\",\n \"whoCanLockTopics\": \"OWNERS_AND_MANAGERS\",\n \"whoCanMoveTopicsIn\": \"NONE\",\n \"whoCanMoveTopicsOut\": \"NONE\",\n \"whoCanPostAnnouncements\": \"NONE\",\n \"whoCanHideAbuse\": \"OWNERS_AND_MANAGERS\",\n \"whoCanMakeTopicsSticky\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModerateMembers\": \"OWNERS_AND_MANAGERS\",\n \"whoCanModerateContent\": \"OWNERS_ONLY\",\n \"whoCanAssistContent\": \"ALL_MEMBERS\",\n \"customRolesEnabledForSettingsToBeMerged\": \"false\",\n \"enableCollaborativeInbox\": \"false\",\n \"whoCanDiscoverGroup\": \"ALL_IN_DOMAIN_CAN_DISCOVER\",\n \"defaultSender\": \"DEFAULT_SELF\"\n}\n```"]]