Google Gruplar ayarlarını al ve güncelle
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Google Gruplar için ayarları güncellerken ve alırken, API isteği için Erişim kimlik bilgileri oluşturma bölümünde açıklandığı gibi kimlik doğrulaması ve API anahtarı gerekir. Daha fazla bilgi için Kimlik doğrulama ve yetkilendirme hakkında bilgi bölümüne bakın.
Bir grubun tüm ayarlarını güncelleme
Bir grubun ayarlarını güncellemek için aşağıdaki PUT
HTTP isteğine Authorization
üst bilgisini ve API anahtarını ekleyin:
PUT https://www.googleapis.com/groups/v1/groups/GROUP_ID
GROUP_ID
yerine grubun kimliğini girin. Örneğin, aşağıdaki komut, salesgroup@example.com grup ayarlarını günceller:
PUT https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
İstek metni JSON biçimindedir. Aşağıdaki örnekte olası tüm ayarlar gösterilmektedir:
{
"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"
}
Başarılı bir yanıtta 200
HTTP durum kodu döndürülür. Yanıt, durum koduyla birlikte güncellenen grup ayarlarını döndürür. Bu ayarlar hakkında daha fazla bilgi için API referansını inceleyin.
Aşağıdaki örnekte JSON yanıtı gösterilmektedir:
{
"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"
}
Grupla ilgili bazı ayarları güncelleme
Bu ayarların bir alt kümesini güncellemek istiyorsanız kısmi güncelleme için PATCH
HTTP isteğini kullanın.
PATCH https://www.googleapis.com/groups/v1/groups/GROUP_ID
Bir grubun ayarlarını alma
Bir grubun ayarlarını almak için aşağıdaki GET
HTTP isteğine Authorization
başlığını ekleyin:
GET https://www.googleapis.com/groups/v1/groups/groupUniqueId
Aşağıdaki örnekte, salesgroup@example.com grup ayarları alınır:
GET https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
Başarılı bir yanıtta 200
HTTP durum kodu döndürülür. Yanıt, durum koduyla birlikte satışgrubu@example.com grubunun ayarlarını döndürür. Bu ayarlar hakkında daha fazla bilgi için API referansına bakın.
Aşağıdaki örnekte JSON yanıtı gösterilmektedir:
{
"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"
}
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-08-29 UTC.
[null,null,["Son güncelleme tarihi: 2025-08-29 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```"]]