action appcenter_builds_get_status_by_app_id { label: "builds_getStatusByAppId" description: "Application specific build service status" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/build_service_status" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { properties: { message: { type: "string" } os: { type: "string" } service: { type: "string" } status: { type: "string" } url: { type: "string" } valid_until: { type: "integer" } } } }