Retrieve & update settings for Google Groups
Stay organized with collections
Save and categorize content based on your preferences.
When updating and retrieving settings for Google Groups, an API request requires the
authentication and API key as described in
Create access credentials. For more information,
see Learn about authentication & authorization.
Update all settings for a group
To update a group's settings, include the Authorization
header and API key in the
following PUT
HTTP request:
PUT https://www.googleapis.com/groups/v1/groups/GROUP_ID
Replace GROUP_ID
with the ID for the group—for example, the following
updates the salesgroup@example.com group settings:
PUT https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
The request body is in the JSON format. The following example shows all possible settings:
{
"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"
}
A successful response returns a
200
HTTP status code. Along with the status code, the response returns the updated
group settings. For more information about these settings see the
API reference.
The following example shows the JSON response:
{
"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"
}
Update some settings for a group
If you want to update a subset of these settings, use the PATCH
HTTP request for
a partial update.
PATCH https://www.googleapis.com/groups/v1/groups/GROUP_ID
Retrieve settings for a group
To retrieve a group's settings, include the Authorization
header in the
following GET
HTTP request:
GET https://www.googleapis.com/groups/v1/groups/groupUniqueId
The following example retrieves the salesgroup@example.com group settings:
GET https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
A successful response returns a 200
HTTP status code. Along with the status
code, the response returns the salesgroup@example.com group's settings. For more information about
these settings see the API reference.
The following example shows the JSON response:
{
"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"
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-28 UTC.
[null,null,["Last updated 2025-08-28 UTC."],[],[],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```"]]