action agco_ats_logs_get_log { label: "Get a log by ID" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Logs/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { ID: { type: "string" } Message: { type: "string" } TimeStamp: { type: "string" format: "date-time" } } } }