action agco_ats_bundles_get_bundle { label: "Get a specific Bundle by ID." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Bundles/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" required: ["BundleNumber", "Description", "UpdateGroupID"] 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." } } } }