Fetches summary details of a computer group including name, type, creator, last modified time, and counts. Supports static and dynamic groups.
get /bsp/api/v1/bmp/groups/{group_id}/summary
https://{serverurl}/bsp/api/v1/bmp/groups/{group_id}/summary
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Computer group ID from List Computer Groups response (group_id field)
curl --request GET \
--url https://appdomains/bsp/api/v1/bmp/groups/{group_id}/summary \
--header 'Accept: application/json' \
--header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52'Top-level response containing the group summary
Object containing the summary details of the requested group
Number of devices in the group. Returns 'NA' for dynamic groups where the count cannot be determined
Number of profiles associated with the group. Absent when no profiles have been assigned to this group
Number of extensions distributed to the group. Absent when no extensions have been distributed to this group
Name of the group
Type identifier of the group as string (e.g., '1' for static, '7' for dynamic)
First name of the user who created the group
Last modified timestamp of the group. Falls back to the creation time if the group has never been modified
Unauthorized error code: credentials missing, expired, or invalid
Authentication failure reason
Error code indicating insufficient permissions
Message indicating insufficient privileges to access this resource
Returned when the specified group is not found
Error message indicating the specified group does not exist
Rate limit error code returned when the API call reached threshold
Rate limit exceeded message with retry guidance
Returned when an unexpected server error occurs
Message describing the internal server error
Error code identifying the type of server error
Static group with profiles and extensions assigned
{
"group_summary": {
"modified_time": "Wed, 11 Mar 2026 10:30:00 AM",
"group_name": "Marketing Browsers",
"group_type": "1",
"profile_count": "3",
"created_by": "admin",
"device_count": "25",
"extension_distributed_count": "2"
}
}
Static group with no profiles or extensions yet
{
"group_summary": {
"modified_time": "Sun, 05 Apr 2026 03:28:11 PM",
"group_name": "stati",
"group_type": "1",
"created_by": "admin",
"device_count": "1"
}
}
Dynamic group with device_count as 'NA'
{
"group_summary": {
"modified_time": "Mon, 10 Mar 2026 02:15:00 PM",
"group_name": "Dynamic Group 1",
"group_type": "7",
"profile_count": "5",
"created_by": "admin",
"device_count": "NA",
"extension_distributed_count": "1"
}
}
Unauthorized
{
"errorCode": "UNAUTHORIZED",
"errorMsg": "You are not authorized to perform this action"
}
Forbidden
{
"errorCode": "FORBIDDEN",
"errorMsg": "You do not have permission to access this resource"
}
Group not found
{
"error_description": "Group ID not found"
}
Rate limit exceeded
{
"errorCode": "RATE_LIMIT_EXCEEDED",
"errorMsg": "You have exceeded the maximum number of API calls. Please try again later."
}
Server error
{
"error_description": "Internal Server error, Please try again in a moment.",
"error_code": "COM0004"
}
![]()
Duration: 1 minute | Threshold: 60 | Lock period: 5 minutes
Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.