action agco_ats_reporting_bundle_status_summary { label: "Get a summary of all Packages in a Bundle" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/BundleStatusSummary" encoding: json input: { type: "object" properties: { BundleID: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["BundleID"] additionalProperties: false } output: { type: "object" description: "A response containing a page of results and metadata concerning the results" required: ["Entities", "Metadata"] properties: { Entities: { type: "array" items: { 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" } } } } } } } Metadata: { type: "object" description: "Metadata for the paged response" required: ["Limit", "Offset", "TotalCount"] properties: { Limit: { type: "integer" format: "int32" description: "The number of entities this paged response is limited to." } Offset: { type: "integer" format: "int32" description: "The number of entities prior to this page of items." } TotalCount: { type: "integer" format: "int32" description: "The total number of entities matching the request." } } } } } }