action appcenter_analytics_crash_group_totals { label: "Available for UWP apps only." description: "Overall crashes and affected users count of the selected crash group with selected version. Available for UWP apps only." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/crash_groups/{crash_group_id}/overall" encoding: json input: { type: "object" properties: { app_name: { type: "string" } crash_group_id: { type: "string" format: "string" } owner_name: { type: "string" } version: { type: "string" format: "string" } } required: ["app_name", "crash_group_id", "owner_name", "version"] additionalProperties: false } output: { type: "object" properties: { crash_count: { type: "integer" format: "int64" } device_count: { type: "integer" format: "int64" } } } }