action agco_ats_content_submissions_get_content_submission_status { label: "Get the status of a ContentSubmission" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/ContentSubmissions/{contentSubmissionID}/Status" encoding: json input: { type: "object" properties: { contentSubmissionID: { type: "integer" format: "int32" } includeActivityRunDetails: { type: "boolean" } } required: ["contentSubmissionID"] additionalProperties: false } output: { type: "object" description: "interface of JobRun" properties: { ActivityRuns: { type: "array" description: "ActivityRuns" items: { type: "object" description: "IActivityRun" properties: { ActivityRunID: { type: "integer" format: "int32" description: "ActivityRunID" } EndDate: { type: "string" format: "date-time" description: "EndDate" } JobActivityID: { type: "integer" format: "int32" description: "JobActivityID" } JobRunID: { type: "integer" format: "int32" description: "JobRunID" } Parameters: { type: "array" description: "Parameters" items: { type: "object" description: "Declares members that must be implemented by parameter value objects." properties: { Direction: { type: "string" description: "Gets or sets a value indicating whether the parameter value is an \n input to the build part or an output from the build part." enum: ["Input", "Output"] } Name: { type: "string" description: "Gets or sets the name of the parameter." } Value: { type: "string" description: "Gets or sets the value of the parameter." } } } } StartDate: { type: "string" format: "date-time" description: "StartDate" } Status: { type: "object" description: "Declares members of objects that communicate the progress of an \n asynchronous activity run." properties: { CurrentStep: { type: "integer" format: "int32" description: "Gets or sets the number of the step the activity is currently running." } Status: { type: "string" description: "Gets or sets the status of the activity run." enum: ["Ready", "InProgress", "Succeeded", "Cancelled", "Failed"] } StepProgress: { type: "integer" format: "int32" description: "Gets or sets a measurement of the current progress of the current step." } StepStatus: { type: "string" description: "Gets or sets a description of the current status of the currently \n running step." } } } Steps: { type: "array" description: "Steps" items: { type: "object" description: "IActivityStep" properties: { ActivityID: { type: "integer" format: "int32" description: "ActivityID" } ActivityStepID: { type: "integer" format: "int32" description: "ActivityStepID" } ImplementationID: { type: "string" description: "Implementation ID" } ParameterMappings: { type: "array" description: "ParameterMappings" items: { type: "object" description: "IParameterMapping" properties: { Name: { type: "string" description: "name" } Source: { type: "string" description: "Source" } SourceType: { type: "string" description: "SourceType" enum: ["Constant", "Variable"] } } } } RunOrder: { type: "integer" format: "int32" description: "run order" } StepID: { type: "integer" format: "int32" description: "step id" } StepName: { type: "string" description: "steo name" } UseConfig: { type: "string" description: "UseConfig" } } } } } } } EndDate: { type: "string" format: "date-time" description: "end date" } JobID: { type: "integer" format: "int32" description: "job id" } JobRunID: { type: "integer" format: "int32" description: "JobRunID" } Parameters: { type: "array" description: "Parameters" items: { type: "object" description: "Declares members that must be implemented by parameter value objects." properties: { Direction: { type: "string" description: "Gets or sets a value indicating whether the parameter value is an \n input to the build part or an output from the build part." enum: ["Input", "Output"] } Name: { type: "string" description: "Gets or sets the name of the parameter." } Value: { type: "string" description: "Gets or sets the value of the parameter." } } } } StartDate: { type: "string" format: "date-time" description: "Start Date" } Status: { type: "string" description: "status" enum: ["Ready", "InProgress", "Succeeded", "Cancelled", "Failed"] } } } }