action agco_ats_aftermarket_services_get_production_data { label: "Get production calibration data for given engine." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/AftermarketServices/Engines/{serialNumber}/ProductionData" encoding: json input: { type: "object" properties: { EDTInstanceId: { type: "string" } serialNumber: { type: "string" } } required: ["EDTInstanceId", "serialNumber"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Production data for an AGCO Power engine." required: ["DataType", "DataValues"] properties: { DataType: { type: "string" description: "Type of data. Valid types are (but not limited to) \n 'PowerCalibration'" } DataValues: { type: "string" format: "byte" description: "Raw values of the calibration data" } } } } }