Purpose
The API creates a new Group with the specified settings.
Request URL
/api/organization/<zoid>/groups
Request Parameters
Parameter | Data Type | Description |
emailID* | String | Email Address of the group to be created. |
name* | String | Unique Name of the group |
accessType | String | Mention the group type as if it is a public group/ organization group/ moderated group/ private group |
streamsEnabled | Boolean | Whether Streams is enabled for the group or not |
mailGroupMemberList | String | The list of members to be added to the group as moderators. |
* - Mandatory parameter
Response Codes
Please refer Response Codes.
Sample Request
{
"emailId": "support@zylkernew.com",
"name": "Customer Support",
"stremsEnabled": True,
"accessType": "Public",
"mailGroupMemberList": [{
"memberEmailId": "mark@zylkernew.com"
},
{
"memberEmailId": "tina@zylkernew.com"
}
]
}