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)
Parameter | Data type | Allowed values | Description |
startdate | string | date | dd-MM-yyyy |
enddate | string | date | dd-MM-yyyy |
mode | integer | 0,1 | 0 - Dev, 1 - Prod |
appversion | string | max-10 | |
limit | integer | ||
offset | integer |
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"
}
Show full
Show less