action appcenter_crashes_get_native_crash { label: "crashes_getNativeCrash" description: "Gets the native log of a specific crash." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/crash_groups/{crash_group_id}/crashes/{crash_id}/native" encoding: json input: { type: "object" properties: { app_name: { type: "string" } crash_group_id: { type: "string" } crash_id: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "crash_group_id", "crash_id", "owner_name"] additionalProperties: false } output: { type: "string" } }