Crashes by date
Purpose
This API provides the crashes data for the past seven days, if no date range has been set. If the date range and platform has been set by the user, the data displayed will be only for the selected platform during the set date range.
Request URL
https://apptics.zoho.com/cx/api/v1/crash/countbydate
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 |
platform | string | iOS/Android/macOS/tvOS/watchOS/Windows | max - 5 |
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.
Copied"ios": {
"crashcount": {
"1536649200000": 3,
"1536735600000": 7,
"1536822000000": 12
},
"devicecount": {
"1536649200000": 2,
"1536735600000": 5,
"1536822000000": 10
},
"usercount": {
"1536649200000": 1,
"1536735600000": 1,
"1536822000000": 4
},
"issuecount": {
"1536649200000": 1,
"1536735600000": 4,
"1536822000000": 3
}
},
"android": {
"crashcount": {
"1536649200000": 26,
"1536735600000": 22,
"1536822000000": 18
},
"deviceschart": {
"1536649200000": 13,
"1536735600000": 15,
"1536822000000": 13
},
"userschart": {
"1536649200000": 5,
"1536735600000": 6,
"1536822000000": 7
},
"issueschart": {
"1536649200000": 21,
"1536735600000": 10,
"1536822000000": 8
}
}
}
Show full
Show less