action appcenter_analytics_crash_groups_totals { label: "Analytics_CrashGroupsTotals" description: "Overall crashes and affected users count of the selected crash groups with selected versions." provider: appcenter method: POST path: "/v0.1/apps/{owner_name}/{app_name}/analytics/crash_groups" encoding: json input: { type: "object" properties: { app_name: { type: "string" } crash_groups: { type: "array" items: { type: "object" properties: { app_version: { type: "string" format: "string" } crash_group_id: { type: "string" format: "string" } } } } owner_name: { type: "string" } } required: ["app_name", "crash_groups", "owner_name"] additionalProperties: false } output: { type: "array" description: "List of crash groups with overall crashes count and affected users." items: { type: "object" properties: { app_version: { type: "string" format: "string" } crash_group_id: { type: "string" format: "string" } overall: { type: "object" properties: { crash_count: { type: "integer" format: "int64" } device_count: { type: "integer" format: "int64" } } } } } } }