擷取 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"
}
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-08-29 (世界標準時間)。
[null,null,["上次更新時間: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```"]]