Récupérer &mettre à jour les paramètres de Google Groupes
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Lors de la mise à jour et de la récupération de paramètres pour Google Groupes, une requête API nécessite l'authentification et la clé API, comme décrit dans la section Créer des identifiants d'accès. Pour en savoir plus, consultez En savoir plus sur l'authentification et l'autorisation.
Mettre à jour tous les paramètres d'un groupe
Pour mettre à jour les paramètres d'un groupe, incluez l'en-tête Authorization
et la clé API dans la requête HTTP PUT
suivante:
PUT https://www.googleapis.com/groups/v1/groups/GROUP_ID
Remplacez GROUP_ID
par l'ID du groupe. Par exemple, le code suivant met à jour les paramètres du groupe salesgroup@example.com:
PUT https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
Le corps de la requête est au format JSON. L'exemple suivant montre tous les paramètres possibles:
{
"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"
}
Une réponse réussie renvoie un code d'état HTTP 200
. En plus du code d'état, la réponse renvoie les paramètres de groupe mis à jour. Pour en savoir plus sur ces paramètres, consultez la documentation de référence de l'API.
L'exemple suivant illustre la réponse 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"
}
Modifier certains paramètres d'un groupe
Si vous souhaitez mettre à jour un sous-ensemble de ces paramètres, utilisez la requête HTTP PATCH
pour effectuer une mise à jour partielle.
PATCH https://www.googleapis.com/groups/v1/groups/GROUP_ID
Récupérer les paramètres d'un groupe
Pour récupérer les paramètres d'un groupe, incluez l'en-tête Authorization
dans la requête HTTP GET
suivante:
GET https://www.googleapis.com/groups/v1/groups/groupUniqueId
L'exemple suivant récupère les paramètres du groupe salesgroup@example.com:
GET https://www.googleapis.com/groups/v1/groups/salesgroup@example.com
Une réponse positive renvoie un code d'état HTTP 200
. En plus du code d'état, la réponse renvoie les paramètres du groupe salesgroup@example.com. Pour en savoir plus sur ces paramètres, consultez la documentation de référence de l'API.
L'exemple suivant illustre la réponse 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"
}
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/08/29 (UTC).
[null,null,["Dernière mise à jour le 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```"]]