action braze_kp_is_for_daily_app_uninstalls_by_date { label: "KPIs for Daily App Uninstalls by Date" description: "This endpoint allows you to retrieve a daily series of the total number of uninstalls on each date.\n\n## Response\n\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR-REST-API-KEY\n{\n \"message\": (required, string) the status of the export, returns 'success' when completed without errors,\n \"data\" : [\n {\n \"time\" : (string) date as ISO 8601 date,\n \"uninstalls\" : (int)\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/kpi/uninstalls/data_series" encoding: json input: { type: "object" properties: { app_id: { type: "string" } ending_at: { type: "string" } length: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }