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)

ParameterTypeData typeAllowed valuesDescription
startdatedefinitestringDatedd-MM-yyyy
enddatedefinitestringDatedd-MM-yyyy
responseformatdefinitestringcsvjson, nestedjsonresponseformat
groupdefiniteList<String>date, platform, bundle, country, appversion, devicetypemin-1, max-2
limitnon-definiteIntegernumber 
offsetnon-definiteIntegernumber 

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
}