Workplace from Meta is being discontinued – seamlessly migrate to Zoho Connect today. Learn More

Skip to main content

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

NameDescriptionRequired
scopeID ID of the Network the group is in. You can get this from the Network list API.Required
partitionIdID of the group you want to add users to.Required
memberIdsUser IDs separated by a comma. You can add up to 100 IDs.Optional
adminIdsComma separated IDs of users to be added as admins. You can add up to 100 IDs.Optional
userEmailIdsUsers' 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"
  }
}