action agco_ats_reporting_package_status_summary { label: "Get a summary report for a Specific Package" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/PackageStatusSummary" encoding: json input: { type: "object" properties: { PackageID: { type: "string" } } required: ["PackageID"] additionalProperties: false } output: { type: "object" properties: { AverageDownloadTime: { type: "string" description: "The average time required to complete the download" } AverageInstallTime: { type: "string" description: "The average time required to complete the install" } Downloaded: { type: "integer" format: "int64" description: "The number of clients that have completed the download" } Error: { type: "integer" format: "int32" description: "The result of the install" } Installed: { type: "integer" format: "int64" description: "The number of clients that have completed the install" } Package: { type: "string" description: "The name of the package" } PackageID: { type: "string" description: "The ID of the package" } PackageStatusItems: { type: "array" description: "The individual package status items" items: { type: "object" properties: { ClientID: { type: "string" description: "The id of the client" } ClientKey: { type: "string" description: "The client's tag" } DownloadTime: { type: "string" description: "The amount of time spent downloading" } Downloaded: { type: "string" description: "The number of bytes downloaded" } InstallCompleted: { type: "string" description: "The time the package completed" } InstallResult: { type: "string" description: "The package result" } InstallStarted: { type: "string" description: "The time the package was started" } InstallTime: { type: "string" description: "The amount of time required to run the package" } Percentage: { type: "string" description: "The download completion percentage" } Size: { type: "string" description: "The total size of the package" } Timestamp: { type: "string" format: "date-time" description: "The time the status was last updated" } } } } } } }