action appcenter_crashes_get_crash_attachment_location { label: "crashes_getCrashAttachmentLocation" description: "Gets the URI location to download crash attachment." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/crashes/{crash_id}/attachments/{attachment_id}/location" encoding: json input: { type: "object" properties: { app_name: { type: "string" } attachment_id: { type: "string" } crash_id: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "attachment_id", "crash_id", "owner_name"] additionalProperties: false } output: { type: "object" description: "Location for downloading crash attachment" required: ["uri"] properties: { uri: { type: "string" } } } }