App Uninstalls
Retrieves uninstall statistics for a specified app over a given time period and installation source.
- Method: GET
- Endpoint:
{{base_url}}/performance/app-uninstalls
Name
Type
Description
app_idRequiredstring
The app ID you want to query.
days_backRequiredstring
The timeframe for which the statistics are fetched.
Allowed values:
Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Daysinstallation_sourceRequiredstring
The download source for the app. Use All Sources to retrieve all the the sources.
Name
In
Type
Description
x-api-tokenheader
N/A
200
App Uninstalls
| Field | Type |
|---|---|
rows.unique_reinstalls | integer |
rows.installation_source | string |
rows.app_id | string |
rows.unique_uninstallations | integer |
rows.updated_at | string |
rows.application_name | string |
rows.total_uninstallations | integer |
rows.uninstall_date | string |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/app-uninstalls?app_id=%7Bapp_id%7D&days_back=Last%2030%20Days&installation_source=%7Binstallation_source%7DResponse
{
"rows": [
{
"unique_reinstalls": "integer",
"installation_source": "string",
"app_id": "string",
"unique_uninstallations": "integer",
"updated_at": "string",
"application_name": "string",
"total_uninstallations": "integer",
"uninstall_date": "date"
}
],
"columns": [
{
"friendly_name": "string",
"type": "string",
"name": "string"
}
]
}