action agco_ats_package_types_get { label: "Get all of the Package Types." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/PackageTypes" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } userID: { 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: ["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." } } } } 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." } } } } } }