Activedevices
Purpose
This API fetches the active devices count for the given date range.
Request URL
https://apptics.zoho.com/cx/api/v1/activedevice/multigroup
Request body (JSON object)
Parameter | Type | Data type | Allowed values | Description |
startdate | definite | string | Date | dd-MM-yyyy |
enddate | definite | string | Date | dd-MM-yyyy |
responseformat | definite | string | csvjson, nestedjson | responseformat |
group | definite | List<String> | date, platform, bundle, country, appversion, devicetype | min-1, max-2 |
limit | non-definite | Integer | number | |
offset | non-definite | Integer | number |
Sample Response - 1 [group - date,platform]
Copied{
"result": {
"iOS": {
"01-01-2020": 2,
"02-01-2020": 9,
"03-01-2020": 97,
"04-01-2020": 56,
"05-01-2020": 18,
"06-01-2020": 22,
"07-01-2020": 3
},
"Android": {
"01-01-2020": 69,
"02-01-2020": 222,
"03-01-2020": 20,
"04-01-2020": 20,
"05-01-2020": 12,
"06-01-2020": 41,
"07-01-2020": 67
}
},
"status": 200
}
Sample Response - 2 [appversion]
Copied{
"result": {
"1.2.3": 181,
"1.2.10": 548,
"1.2.7": 33,
"1.2.8": 6
},
"status": 200
}