Crashes by OS version

Purpose

This API provides the OS version-wise crash for the specified date range.

Request URL

https://apptics.zoho.com/cx/api/v1/crash/<uniqueid>/osversion

Request body (JSON object)

ParameterData typeAllowed valuesDescription
startdatestringdatedd-MM-yyyy
enddatestringdatedd-MM-yyyy
modeinteger0,10 - Dev, 1 - Prod
appversionstring max-10
limitinteger  
offsetinteger  

Note: If user didn't give limit parameter that means by default it is 500 and user is restricted between 0 to 500 for this parameter.

Sample Response

Copied{
    "data": [
        {
            "OSVersion": "6.0000",
            "Count": "1"
        },
        {
            "OSVersion": "DD_OSVersion_1",
            "Count": "2"
        },
        {
            "OSVersion": "12.5.6",
            "Count": "2"
        },
        {
            "OSVersion": "4300",
            "Count": "4"
        },
        {
            "OSVersion": "15.6.1",
            "Count": "1"
        },
        {
            "OSVersion": "15.5",
            "Count": "1"
        },
        {
            "OSVersion": "15.3.1",
            "Count": "1"
        },
        {
            "OSVersion": "16",
            "Count": "3"
        }
    ],
    "status": "success"
}