action agco_ats_package_reports_default { label: "Get the package reports for a client." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Clients/{ClientID}/PackageReports" encoding: json input: { type: "object" properties: { ClientID: { type: "string" } } required: ["ClientID"] additionalProperties: false } output: { type: "array" 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." } } } } }