action agco_ats_priority_packages_get_priority_packages { label: "Get a list of Priority Packages by Client." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/PriorityPackages" encoding: json input: { type: "object" properties: { ClientID: { type: "string" } Status: { type: "string" enum: ["Active", "Completed", "All"] } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } 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" 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." } } } } 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." } } } } } }