Get the individual Announcement distributed to groups
https://{server-hostname}:8383/api/v1/mdm/announcements/{announcement_id}/groups
MDMDeviceMgmt.READCopied!
Authorization: d92d4xxxxxxxxxxxxx15f52
Unique identifier of the announcement. Obtain from the Create Announcement or Get Announcements response
Maximum number of records to return in a single response. Used together with offset for pagination
Pagination continuation token returned by a previous response. Pass it to fetch the next page of results
Zero-based index of the first record to return. Used together with limit for pagination
Token used for delta/incremental fetches. Pass the token returned from a previous response to retrieve only items modified since that point
curl --request GET \
--url 'https://appdomain/api/v1/mdm/announcements/{announcement_id}/groups?limit=SOME_INTEGER_VALUE&skip-token=SOME_STRING_VALUE&offset=SOME_INTEGER_VALUE&delta-token=SOME_STRING_VALUE' \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52'Pagination metadata with total record count
Total number of user records matching the query
Array of group objects the announcement is distributed to
Unique identifier of the group
Display name of the group
Type code of the group (e.g., 6 for device group)
Number of members in the group
List of groups the announcement is distributed to with metadata
{
"metadata": {
"total_record_count": "2"
},
"groups": [
{
"group_id": "9007199254741899",
"name": "Device group 1",
"group_type": "6",
"member_count": "0"
},
{
"group_id": "9007199254741901",
"name": "Device group 2",
"group_type": "6",
"member_count": "2"
}
]
}
Announcement is not distributed to any groups
{
"metadata": {
"total_record_count": "0"
},
"groups": []
}
![]()
Duration: 1 minute | Threshold: 120 | 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.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.