action agco_ats_get_api_v2_package_types_id { label: "Get a specific Package Type." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/PackageTypes/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" required: ["Description"] properties: { Attribute: { type: "string" description: "The inventory attribute (from the InventoryPackage) used to determine what version of this package type is installed." } Category: { type: "string" description: "The inventory category (from the InventoryPackage) used to determine what version of this package type is installed." } Description: { type: "string" description: "The description of the package type" } Icon: { type: "string" description: "Optional. The icon to use for the PackageType, in base 64" } InventoryFrequency: { type: "integer" format: "int32" description: "The number of minutes to wait before requesting another inventory. The default value is 1440 (24 hours)." } InventoryPackage: { type: "string" description: "The inventory package used to determine what version of this package type is installed." } LocalizedDescription: { type: "string" description: "Optional. The StringID used to localize the description of the PackageType" } LocalizedName: { type: "string" description: "Optional. The StringID used to localize the name of the PackageType" } MaxDeltaPackages: { type: "integer" format: "int32" description: "The maximum number of \"chained\" delta packages to use when updating the client" } PackageTypeID: { type: "string" description: "Read Only. The package type id." } } } }