action agco_ats_get_api_v2_update_groups_id { label: "Get a specific Update Group by ID." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/UpdateGroups/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" required: ["Description", "Priority", "UpdateType"] properties: { Description: { type: "string" description: "The description of the update group" } ID: { type: "string" } InventoryFrequency: { type: "integer" format: "int32" description: "The time in minutes between inventory checks. Default value is 1440 minutes (one day)." } InventoryPackage: { type: "string" description: "The Package ID of the package used for inventory" } LocalizedDescription: { type: "string" description: "Optional. The StringID used to localize the description of the update group" } LocalizedName: { type: "string" description: "Optional. The StringID used to localize the name of the update group" } 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." } ReportField: { type: "string" description: "A field to return in the status report for this update group. \n Specify the field with the format [Label]: {[InventoryPackageID].[Category].[Attribute]}. (i.e. example: {bec778ca-278d-424a-867a-4653a1a19e86.MyCategory.MyAttribute})" } UpdateType: { type: "string" description: "The update type name" } ValidatingField: { type: "string" description: "A field used for validation in the status report for this update group. \n Specify the field with the format [Label]: {[InventoryPackageID].[Category].[Attribute]}. (i.e. example: {bec778ca-278d-424a-867a-4653a1a19e86.MyCategory.MyAttribute})" } ValueToValidate: { type: "string" description: "The value to validate the ValidationField against." } Version: { type: "string" format: "byte" description: "The version of the UpdateGroup, this value is incremented with each modification to a related Bundle or PackageType" } } } }