The purpose of this API is to add users to a group in Zoho Connect.
Request URL: | https://connect.zoho.com/pulse/api/addUsersToGroup |
OAuth Scope: | zohopulse.grouplist.CREATE |
Request Method: | POST |
Mandatory Header: | Header name: Authorization Header Value: Zoho-oauthtoken d92d401c803988c5cb849d0b4215f52 |
Parameters
Name | Description | Required |
scopeID | ID of the Network the group is in. You can get this from the Network list API. | Required |
partitionId | ID of the group you want to add users to. | Required |
memberIds | User IDs separated by a comma. You can add up to 100 IDs. | Optional |
adminIds | Comma separated IDs of users to be added as admins. You can add up to 100 IDs. | Optional |
userEmailIds | Users' email addresses separated by a comma. You can add up to 100 addresses. | Optional |
Sample URL
Copiedhttps://connect.zoho.com/pulse/api/addUsersToGroup?scopeID=105000017039001&partitionId=1048785767&memberIds=67575654
If not able to add members, the result response will be
Copied{
"addUsersToGroup": {
"failedUserIds": [
"10749992"
]
}
}
if success, the result response will be
Copied{
"addUsersToGroup": {
"result": "success"
}
}