action appcenter_builds_get_log { label: "builds_getLog" description: "Get the build log" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/builds/{build_id}/logs" encoding: json input: { type: "object" properties: { app_name: { type: "string" } build_id: { type: "integer" } owner_name: { type: "string" } } required: ["app_name", "build_id", "owner_name"] additionalProperties: false } output: { properties: { value: { type: "array" items: { type: "string" } } } } }