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 TypeAllowed ValuesDescription
startdatestringdatedd-MM-yyyy
enddatestringdatedd-MM-yyyy
modeinteger0,1 0 - Dev, 1- Prod
platformstringiOS/Android/macOS/tvOS/watchOS/Windows max - 5
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.

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
 }
 }
}