This API allows you to create a new group in Zoho Assist.

POST /api/v2/unattended_computer/group


OAuth Scope

ZohoAssist.unattended.group.CREATE


Request JSON

  • Parameters
    Data Type
    Description
  • department_id *
    Long
    Mandatory
    Department in which the group is to be created.
  • group_name *
    String
    Mandatory
    Name of the new Unattended Group.
  • description *
    String
    Mandatory
    Description of the new Unattended Group.
  • computer_list
    Array of String
    Optional
    List of devices to be added in the new Group.

Create Unattended Group

Copiedcurl --location '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_name": "Malcom Group",
    "description": "",
    "computer_list": ["21******************", "22******************"],
    "department_id":  215*****************
}'
CopiedHTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
    "representation": {
        "created_time": 1700566390001,
        "group_name": "group_name",
        "group_id": "21******************",
        "department_id": 215*****************,
        "description": "",
        "created_by": 74*********
    },
    "resource_type": "group"
}