The purpose of this API is to archive/un-archive a group on Zoho Connect.
Request URL: | https://connect.zoho.com/pulse/api/changePartitionStatus |
OAuth Scope: | zohopulse.grouplist.UPDATE |
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 | Group id to archive | Required |
isarchive | Set this as either true or false. | Required (if you're archiving the group) |
isactive | Set this as either true or false. | Required (if you're un-archiving a group) |
Archive Group:
Sample URL
Copiedhttps://connect.zoho.com/pulse/api/changePartitionStatus?scopeID=929000000015001&partitionId=929000000954001&isarchive=true
Sample Response
Copied{
"changePartitionStatus": {
"result": "success"
}
}
Un-archive Group:
Sample URL
Copiedhttps://connect.zoho.com/pulse/api/changePartitionStatus?scopeID=929000000015001&partitionId=929000000954001&isactive=true
Sample Response
Copied{
"changePartitionStatus": {
"result": "success"
}
}