Unique crashes by timezone

Purpose

This API fetches the unique crash data with time zone 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/<uniqueid>/countbydatewithtimezone

Request body (JSON object)

ParameterData typeAllowed valuesDescription
startdatestringDatedd-MM-yyyy
enddatestringDatedd-MM-yyyy
modeinteger0,10 - Dev, 1 -Prod 
uniqueidlong  
appversionstring max - 10
platformstringiOS/Android/ Windows/tvOS/watchOS/macOSmax - 1
limitinteger  
offsetinteger  
happendatBooleantrue/false 
daterangekey*   
timezone*string  

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