action agco_ats_release_get_releases { label: "Get Release" description: "Gets a collection of Release. When successful, the response is a PagedResponse of Release. \n If unsuccessful, an appropriate ApiError is returned." provider: agco_ats method: GET path: "/api/v2/Releases" encoding: json input: { type: "object" properties: { bundleID: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } visible: { type: "boolean" } } 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" description: "Release class" properties: { BuildDate: { type: "string" format: "date-time" description: "Build Date" } BundleIDs: { type: "array" description: "IDs of AUC Bundles associated with this Release." items: { type: "string" } } ReleaseDate: { type: "string" format: "date-time" description: "Release Date" } ReleaseID: { type: "integer" format: "int32" description: "Release ID" } ReleaseNumber: { type: "string" description: "Release Number" } Visible: { type: "boolean" description: "Visible" } } } } 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." } } } } } }