action appcenter_analytics_crash_free_device_percentages { label: "Analytics_CrashFreeDevicePercentages" description: "Percentage of crash-free device by day in the time range based on the selected versions. Api will return -1 if crash devices is greater than active devices." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/crashfree_device_percentages" encoding: json input: { type: "object" properties: { app_name: { type: "string" } end: { type: "string" format: "date-time" } owner_name: { type: "string" } start: { type: "string" format: "date-time" } version: { type: "string" format: "string" } } required: ["app_name", "owner_name", "start", "version"] additionalProperties: false } output: { type: "object" properties: { average_percentage: { type: "number" format: "double" description: "Average percentage." } daily_percentages: { type: "array" description: "The crash-free percentage per day." items: { properties: { datetime: { type: "string" description: "The ISO 8601 datetime." } percentage: { type: "number" format: "double" description: "Percentage of the object." } } } } } } }