action appcenter_crashes_get_crash_text_attachment_content { label: "crashes_getCrashTextAttachmentContent" description: "Gets content of the text attachment." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/crashes/{crash_id}/attachments/{attachment_id}/text" 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: "string" } }