Delete the existing unattended computer groups using this API.

DELETE /api/v2/unattended_computer/group


OAuth Scope

ZohoAssist.unattended.group.DELETE


Request JSON

  • Parameters
    Data Type
    Description
  • group_list *
    Array of String
    Mandatory
    List of group Ids to be removed.
  • department_id *
    Long
    Mandatory
    Department in which the list of groups to be deleted.

Delete Unattended Group

Copiedcurl --location --request DELETE '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 '{
    "group_list": ["213*************", "215*************"],
    "department_id": 215*****************
}'
CopiedHTTP/1.1 204 No Content