action agco_ats_priority_packages_get_priority_package { label: "Get a Priority Packages for a Client." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/PriorityPackages/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" required: ["ClientID", "PackageID"] properties: { Autorun: { type: "boolean" description: "Read Only. From the package specified by package ID. \n Value is true if package should run automatically. Default value is false." } CRC: { type: "string" description: "Read Only. From the package specified by package ID." } ClientID: { type: "string" description: "The ID of the client to receive the priority package" } Description: { type: "string" description: "Read Only. From the package specified by package ID." } Notes: { type: "string" description: "Read Only. From the package specified by package ID." } PackageID: { type: "string" description: "The ID of the package to push as a priority package." } PackageTypeID: { type: "string" description: "Read Only. From the package specified by package ID." } PreviousVersion: { type: "integer" format: "int32" description: "Read Only. From the package specified by package ID." } PriorityPackageID: { type: "string" description: "Read Only. The ID of the priority package." } ReleaseDate: { type: "string" format: "date-time" description: "Read Only. From the package specified by package ID. \n The date the package was released" } Released: { type: "boolean" description: "Read Only. From the package specified by package ID." } RemoveOnSuccess: { type: "boolean" description: "Read Only. From the package specified by package ID." } Size: { type: "integer" format: "int64" description: "Read Only. From the package specified by package ID." } Switches: { type: "string" description: "The command line arguments for the priority package. Default value is an empty string." } TimeStamp: { type: "string" format: "date-time" description: "Read Only. The timestamp of the priority package." } Url: { type: "string" description: "Read Only. From the package specified by package ID." } Version: { type: "integer" format: "int32" description: "Read Only. From the package specified by package ID." } } } }