action appcenter_builds_get { label: "builds_get" description: "Returns the build detail for the given build ID" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/builds/{build_id}" 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: { required: ["buildNumber", "id", "queueTime", "result", "sourceBranch", "sourceVersion", "status"] properties: { buildNumber: { type: "string" description: "The build number" } finishTime: { type: "string" format: "dateTime" description: "The time the build was finished" } id: { type: "integer" description: "The build ID" } lastChangedDate: { type: "string" format: "dateTime" description: "The time the build status was last changed" } queueTime: { type: "string" format: "dateTime" description: "The time the build was queued" } result: { type: "string" description: "The build result" } sourceBranch: { type: "string" description: "The source branch name" } sourceVersion: { type: "string" description: "The source SHA" } startTime: { type: "string" format: "dateTime" description: "The time the build was started" } status: { type: "string" description: "The build status" } } } }