action agco_ats_reporting_bundles_in_update_group { label: "Get a list of bundles for UpdateGroup." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/BundlesInUpdateGroup" encoding: json input: { type: "object" properties: { ID: { type: "string" } IncludeInactive: { type: "boolean" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["ID", "IncludeInactive"] 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", "UpdateGroupID", "BundleNumber"] properties: { Active: { type: "boolean" description: "Default Value: false. During the creation of the Bundle, this field must be false." } BundleID: { type: "string" description: "Read-Only." } BundleNumber: { type: "integer" format: "int32" description: "The bundle number" } Description: { type: "string" description: "The Bundle description." } UpdateGroupID: { type: "string" description: "The update group this bundle belongs to." } } } } 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." } } } } } }