action agco_ats_package_typeto_bundles_get { label: "Get all of the Package Type to Bundle Relationships." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/PackageTypetoBundles" encoding: json input: { type: "object" properties: { BundleID: { type: "string" } 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: ["BundleID", "PackageTypeID", "PackageVersion", "Priority"] properties: { BundleID: { type: "string" description: "The bundle to include the package in." } PackageTypeID: { type: "string" description: "The package type id of the package to include" } PackageVersion: { type: "integer" format: "int32" description: "The package version of the package to include" } Priority: { type: "integer" format: "int32" description: "The execution priority of the package relative to other packages in the bundle. Range 1 - 100, lower value indication higher priority." } SubscriptionType: { type: "string" description: "Optional. The type of subscription supported. The default subscription type is Required." enum: ["Required", "IncludeByDefault", "ExcludeByDefault"] } } } } 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." } } } } } }