Using this API, you can update the existing group details.

PUT /api/v2/unattended_computer/group


OAuth Scope

ZohoAssist.unattended.group.UPDATE


Request JSON

  • Parameters
    Data Type
    Description
  • id *
    String
    Mandatory
    The group_id of the group to be updated.
  • department_id *
    String
    Mandatory
    Department in which the group is present.
  • name
    String
    Optional
    Name of the group to be updated.
  • description
    String
    Optional
    Description of the group to be updated.
  • addedlist
    Array of Long
    Optional
    List of devices to be added in the group.
  • removedlist
    Array of Long
    Optional
    List 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