Retrieve the list of devices an announcement is distributed to Get the individual Announcement distributed to device
Request URL https://{server-hostname}:8383/api/v1/mdm/announcements/{announcement_id}/devices
Scope
Header Authorization: d92d4xxxxxxxxxxxxx15f52
Request Parameters - Request Headers - Path Parameters announcement_id string Mandatory
- Query Parameters limit integer Optional
Maximum number of records to return in a single response. Used together with offset for pagination
skip-token string Optional
Pagination continuation token returned by a previous response. Pass it to fetch the next page of results
offset integer Optional
Zero-based index of the first record to return. Used together with limit for pagination
delta-token string Optional
Token used for delta/incremental fetches. Pass the token returned from a previous response to retrieve only items modified since that point
Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
--url 'https://appdomain/api/v1/mdm/announcements/{announcement_id}/devices?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'import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.io.IOException;
import java.net.http.HttpTimeoutException;
public class Main {
public static void main(String[] args) {
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://appdomain/api/v1/mdm/announcements/{announcement_id}/devices?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")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
import http.client
conn = http.client.HTTPSConnection("appdomain")
headers = {
'Accept': "application/json",
'Authorization': " d92d4xxxxxxxxxxxxx15f52"
}
conn.request("GET", "/api/v1/mdm/announcements/{announcement_id}/devices?limit=SOME_INTEGER_VALUE&skip-token=SOME_STRING_VALUE&offset=SOME_INTEGER_VALUE&delta-token=SOME_STRING_VALUE", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
headersMap = Map();
headersMap.put("Accept", "application/json");
response = invokeUrl
[
url: "https://appDomain/api/v1/mdm/announcements/{announcement_id}/devices"
type: GET
headers: headersMap
connection: connection_name
]
info response;
$headers=@{}
$headers.Add("Accept", "application/json")
$headers.Add("Authorization", " d92d4xxxxxxxxxxxxx15f52")
$response = Invoke-WebRequest -Uri 'https://appdomain/api/v1/mdm/announcements/{announcement_id}/devices?limit=SOME_INTEGER_VALUE&skip-token=SOME_STRING_VALUE&offset=SOME_INTEGER_VALUE&delta-token=SOME_STRING_VALUE' -Method GET -Headers $headersResponse Parameters - HTTP code 200 Response Body - application/json JSON Object
Hide Sub-Attributes metadata JSON Object
Pagination metadata with total record count
Show Sub-Attributes total_record_count string
Total number of user records matching the query
devices JSON Array
Array of device objects the announcement is distributed to
Show Sub-Attributes JSON Object
Show Sub-Attributes resource_id string
Unique resource identifier of the device
name string
Display name of the device
platform_type string
Platform type code (e.g., 1=iOS, 2=Android, 3=Windows)
Possible Response Codes Sample Response: HTTP 200 List of devices the announcement is distributed to with metadata
Copied!
{
"metadata": {
"total_record_count": "1"
},
"devices": [
{
"platform_type": "2",
"name": "admin_SM-S921B",
"resource_id": "9007199254741895",
"udid": "96d096245821a479"
}
]
}
▼ Show full
Announcement is not distributed to any devices
Copied!
{
"metadata": {
"total_record_count": "0"
},
"devices": []
}
▼ Show full
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.