App Crashes
Retrieves crash reports for a specific app over a defined period.
- Method: GET
- Endpoint:
{{base_url}}/performance/app-crashes
Name
Type
Description
app_idstring
The app ID you want to query.
app_versionstring
The app version you want to query. Use All Versions to retrieve all the versions.
days_backstring
The timeframe for which the statistics are fetched.
Name
In
Type
Description
authorizationheader
string
200
App Crashes
| Field | Type |
|---|---|
rows.app_version | string |
rows.crash_date | string |
rows.total_crashes | integer |
rows.distinct_crashes | integer |
rows.updated_at | string |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/app-crashes?app_id=%7B%7Bapp_id%7D%7D&app_version=All%20Versions&days_back=Last%20180%20DaysResponse
{
"rows": [
{
"app_version": "string",
"crash_date": "date",
"total_crashes": "integer",
"distinct_crashes": "integer",
"updated_at": "string"
}
],
"columns": [
{
"friendly_name": "string",
"type": "string",
"name": "string"
}
]
}