action agco_ats_reporting_client_info { label: "Get Client Information" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/ClientInfo" encoding: json input: { type: "object" properties: { ClientID: { type: "string" } } required: ["ClientID"] additionalProperties: false } output: { type: "object" properties: { ClientID: { type: "string" description: "The id of the client" } Package: { type: "array" description: "The packages" items: { type: "object" properties: { Categories: { type: "array" description: "The package report's categories." items: { type: "object" required: ["category"] properties: { Values: { type: "array" items: { type: "object" required: ["Key"] properties: { Key: { type: "string" description: "The attribute name" } TimeStamp: { type: "string" format: "date-time" description: "Read Only. The timestamp." } Value: { type: "string" description: "The value" } } } } category: { type: "string" description: "The category name" } } } } PackageDescription: { type: "string" description: "Read Only. The package description" } PackageID: { type: "string" description: "The PackageID." } } } } } } }