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)

ParameterData TypeAllowed ValuesDescription
mode*StringupdateMemberStatusTo change the status of a member of the group. 
mailGroupMemberList*Object MemberListVO with all individual parameters.
zuidInteger ZUID of the user, incase the user is from the same organization
memberEmailId*StringEmail AddressEmail address of the member whose status should be updated. 
status*Stringunconfirmed
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"
}