action agco_ats_steps_get_step { label: "Get a Step by ID" description: "Gets a Step by ID. When successful, the response is the requested Step. \n If unsuccessful, an appropriate ApiError is returned. Steps.Read permission is required." provider: agco_ats method: GET path: "/api/v2/steps/{stepID}" encoding: json input: { type: "object" properties: { isIncludeDeleted: { type: "boolean" } stepID: { type: "integer" format: "int32" } } required: ["stepID"] additionalProperties: false } output: { type: "object" description: "Step" required: ["ConfigRequired", "ImplementationID", "Name"] properties: { ConfigRequired: { type: "boolean" description: "Indicates if the step requires configuration values to be provided by the build agent" } Deleted: { type: "boolean" description: "Read Only. Indicates if the record is deleted." } Description: { type: "string" description: "A description of the step to be presented to a user" } ImplementationID: { type: "string" description: "The implementation ID used to lookup the step implementation when it is executed" } Name: { type: "string" description: "The name of the step" } Parameters: { type: "array" description: "The parameters for this step" items: { type: "object" description: "A DTO for an IParameter" properties: { Direction: { type: "string" description: "The parameter direction (Input or Output)" enum: ["Input", "Output"] } Name: { type: "string" description: "The name of the parameter" } Type: { type: "string" description: "The data type of the parameter" enum: ["String", "Boolean", "Integer", "Float", "StringDictionary"] } } } } StepID: { type: "integer" format: "int32" description: "The ID of the step" } } } }