Crashes by timezone

Purpose

This API provides the crashes data with timezone 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/countbydatewithtimezone

Request body (JSON object)

ParameterData typeAllowed valuesDescription
startdatestringDatedd-MM-yyyy
enddatestringDatedd-MM-yyyy
modeinteger0,10 - Dev, 1- Prod
platformstringiOS/Android/ Windows/tvOS/watchOS/macOSmax-5
appversionstring max-10
limitinteger  
offsetinteger  
happenedatBooleantrue/false 
daterange* D/H/H6/H3/C 
timezone*stringAmerica/Los_Angeles 

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": {
       "ios": {
           "crashcount": {
               "1665745800000": 2,
               "1665744900000": 4,
               "1665745500000": 12
           },
           "devicecount": {
               "1665745800000": 33,
               "1665744900000": 23,
               "1665745500000": 13
           },
           "usercount": {
               "1665745800000": 21,
               "1665744900000": 54,
               "1665745500000": 0
           },
           "issuecount": {
               "1665745800000": 2,
               "1665744900000": 1,
               "1665745500000": 5
           }
       }
   },
   "status": "success"
}