action agco_ats_activity_runs_get_activity_run_status { label: "Get the ActivityRunStatus of an ActivityRun" description: "Gets the ActivityRunStatus of an ActivityRun. When successful, the response is the requested ActivityRunStatus. \n If unsuccessful, an appropriate ApiError is returned." provider: agco_ats method: GET path: "/api/v2/activityRuns/{activityRunID}/status" encoding: json input: { type: "object" properties: { activityRunID: { type: "integer" format: "int32" } } required: ["activityRunID"] additionalProperties: false } output: { type: "object" description: "A DTO for an IActivityRunStatus" properties: { CurrentStep: { type: "integer" format: "int32" description: "The activity step currently executing, indicated by numeric order" } Status: { type: "string" description: "The status of the ActivityRun" enum: ["Ready", "InProgress", "Succeeded", "Cancelled", "Failed"] } StepProgress: { type: "integer" format: "int32" description: "The percent progress from the currently executing step. This value shall be null if progress is not available" } StepStatus: { type: "string" description: "The status text from the currently executing step" } } } }