This API fetches the details of existing groups in Zoho Assist.
GET /api/v2/unattended_computer/group
OAuth Scope
ZohoAssist.unattended.group.READ
Query Parameters
- ParametersData TypeDescription
- qString
OptionalThe Name of the Unattended Group. - department_id *Long
MandatoryDepartment in which the group is created.
Get Unattended Group
Copiedcurl --location --globoff 'https://assist.zoho.com/api/v2/unattended_computer/group?q=Malcom&department_id=2750***********' \
--header 'Content-Type: application/x-www-form-urlencoded;charset=UTF-8' \
--header 'Authorization: Zoho-oauthtoken 1000.84f8*****************************************'
CopiedHTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
"representation": [
{
"group_id": "UNGROUPED",
"group_name": "Ungrouped",
"options": false,
"created_by": "malcolm.h@zylker.com",
"computer_count": 0
},
{
"group_name": "John Group",
"group_id": "21***************",
"created_by": "john.m@zylker.com",
"created_time": "1700459432749",
"description": "",
"computer_count": 2,
"is_preferred_group": false
},
{
"group_name": "Malcolm Group",
"group_id": "21***************",
"created_by": "malcolm.h@zylker.com",
"created_time": "1700226577858",
"computer_count": 1,
"is_preferred_group": false
}
],
"resource_type": "group"
}
Show full
Show less