Purpose
The API is used to update the individual details of the members in a group.
Request URL
https://mail.zoho.com/api/organization/<zoid>/groups/<groupId>
Request Parameters
Parameter | Data Type | Allowed Values | Description |
mode* | String | updateGroupMemberDetails | To change the details of individual members in a group |
mailGroupMemberList* | Object | MemberListVO with all individual parameters. | |
memberEmailId* | String | Email Address | Email address of the member whose details are to be updated. |
role* | String | member moderator | The role to which the member has to be changed. |
status | String | unconfirmed active deactive deleted unsupported | The status to which the member status should be changed to. |
ackStatus | Booleam | true | Whether acknowledgement should be sent to the user or not. |
postApproval | String | accept | Whether emails from the user should be delivered to user, or held for moderation or rejected and bounced back. |
* - Mandatory parameter
Response Codes
Please refer Response Codes.
Sample Request
{
"mailGroupMemberList": [{
"memberEmailId": "randerson@zylker.com"
"ackStatus": true,
"postApproval": "accept",
"status": "active",
"role": "member",
}],
"mode": "updateGroupMemberDetails"
}