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
- ParametersData TypeDescription
- department_id *Long
MandatoryDepartment in which the group is to be created. - group_name *String
MandatoryName of the new Unattended Group. - description *String
MandatoryDescription of the new Unattended Group. - computer_listArray of String
OptionalList 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"
}