PUT - Change advanced settings of the group
Purpose
The API changes the advanced settings for the group, based on the groupid provided.
Request URL
https://mail.zoho.com/api/organization/<zoid>/groups/<groupId>
Scope
organization.groups
Request Parameters
Parameter | Data Type | Description |
mode* | String | The mode value should be 'updateMailGroupAdvOptions' |
accessType* | String | The access Type of the Group. (Public/ Organization/ Group/ Moderated) |
groupAdminSettings* | VO | Group Admin Settings Object |
mailboxId* | long | Mail box id detail of the group mail box |
isNotToCc* | boolean | Whether the emails should be delivered or not, if the group email is is not in To/ Cc |
holdOrBounce* | String | Allowed Values are "hold" or "reject" based on whether the email should be hold or reject. |
spamApproval* | boolean | Whether the spam emails can be identified by the Administrator or not |
adminNotify* | boolean | Whether the administrator should be notified or not |
authorNotify* | boolean | Whether the sender of the email should be notified or not/ |
mailboxSendRights* | boolean | Whether the members of the email group should be able to send emails using the group |
spamMarkPermission* | boolean | Whether the Spam Marking of administrator needs to be considered or not. |
postApprovedNotify* | boolean | Whether the post approval should be notified or not. |
suppressMailOnMemAdd* | boolean | Whether email should be sent to members on member addition. |
* Mandatory Paramaters
Response Codes
Please refer Response Codes.
Sample Request
Copied{
"accessType": "Public",
"mode": "updateMailGroupAdvOptions"
"groupAdminSettings": {
"authorNotify": true,
"holdOrBounce": "hold",
"mailboxSendRights": true,
"postApprovedNotify": true,
"spamMarkPermission": true,
"suppressMailOnMemAdd": true,
"mailboxId": 1000000009001,
"spamApproval": true,
"adminNotify": true,
"isNotToCc": true,
},
}