Purpose
The API is used to change the status of a member added to a group.
Request URL
https://mail.zoho.com/api/organization/<zoid>/groups/<groupId>
Scope
organization.groups
Request Body (JSON Object)
Parameter | Data Type | Allowed Values | Description |
mode* | String | updateMemberStatus | To change the status of a member of the group. |
mailGroupMemberList* | Object | MemberListVO with all individual parameters. | |
zuid | Integer | ZUID of the user, incase the user is from the same organization | |
memberEmailId* | String | Email Address | Email address of the member whose status should be updated. |
status* | String | unconfirmed active deactive deleted unsupported | The status to which the member should be changed to. |
* - Mandatory parameter
Response Codes
Please refer Response Codes.
Sample Request
Copied{
"mailGroupMemberList":[
{
"status":"active",
"memberEmailId":"memName1@orgdomain.com"
}
],
"mode":"updateMemberStatus"
}