action agco_ats_reporting_get_client { label: "Get a Client in the Update System." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/GetClient" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { ClientID: { type: "string" description: "Read Only. The id of the client" } LastCheckin: { type: "string" format: "date-time" description: "Read Only. The time of the client's last checkin with the server." } Tag: { type: "string" description: "A description of the client that can be used for easy reference" } } } }