Using this API, you can update the existing group details.
PUT /api/v2/unattended_computer/group
OAuth Scope
ZohoAssist.unattended.group.UPDATE
Request JSON
- ParametersData TypeDescription
- id *String
MandatoryThe group_id of the group to be updated. - department_id *String
MandatoryDepartment in which the group is present. - name*String
MandatoryName of the group to be updated. - descriptionString
OptionalDescription of the group to be updated. - addedlistArray of Long
OptionalList of devices to be added in the group. - removedlistArray of Long
OptionalList of devices to be removed from the group.
Edit Unattended Group
Copiedcurl --location --request PUT 'https://assist.zoho.com/api/v2/unattended_computer/group' \
--header 'Content-Type: application/x-www-form-urlencoded;charset=UTF-8' \
--header 'Authorization: Zoho-oauthtoken 1000.84f8*****************************************' \
--data '{
"id": "21****************",
"name": "Updated group name",
"description": "Updated group description",
"addedlist": [21**************, 22**************],
"department_id": "215*****************",
"removedlist": [213*************, 215*************]
}'
CopiedHTTP/1.1 200 OK