action appcenter_crashes_get_app_crashes_info { label: "crashes_getAppCrashesInfo" description: "Gets whether the application has any crashes." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/crashes_info" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "object" required: ["features", "has_crashes"] properties: { features: { type: "object" properties: { crash_download_raw: { type: "boolean" description: "App supports download of raw crashes" } crashgroup_analytics_crashfreeusers: { type: "boolean" description: "App supports the 'crash free user' metric" } crashgroup_analytics_impactedusers: { type: "boolean" description: "App supports the 'impacted users' metric" } crashgroup_modify_annotation: { type: "boolean" description: "App supports modification of crashgroup annotation" } crashgroup_modify_status: { type: "boolean" description: "App supports modification of crashgroup status" } search: { type: "boolean" description: "App supports search API" } } } has_crashes: { type: "boolean" } } } }