Agco Bundles API

The Bundles API from Agco — 2 operation(s) for bundles.

Operations 5

GET /api/v2/Bundles Get the list of bundles #
POST /api/v2/Bundles Add a Bundle to the Update System #
GET /api/v2/Bundles/{ID} Get a specific Bundle by ID #
PUT /api/v2/Bundles/{ID} Modify a Bundle in the Update System #
DELETE /api/v2/Bundles/{ID} Delete a Bundle #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/agco-bundles-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

agco-bundles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Bundles API
servers:
- url: https://secure.agco-ats.com
tags:
- name: Bundles
paths:
  /api/v2/Bundles:
    get:
      tags:
      - Bundles
      summary: Get the list of bundles
      description: No Documentation Found.
      operationId: Bundles_GetBundles
      parameters:
      - name: UpdateGroupID
        in: query
        description: Optional. Filter by UpdateGroup ID.
        required: false
        schema:
          type: string
      - name: Active
        in: query
        description: Optional. Filter by active status.
        required: false
        schema:
          type: boolean
      - name: limit
        in: query
        description: Optional. The page limit. The default page limit is 10.
        required: false
        schema:
          type: integer
          format: int32
      - name: offset
        in: query
        description: Optional. The page offset. The default page offset is 0.
        required: false
        schema:
          type: integer
          format: int32
      - name: BundleNumber
        in: query
        description: Optional. If provided, filters by BundleNumber.
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.PagedResponse_UpdateSystem.Models.Bundle'
            text/json:
              schema:
                $ref: '#/components/schemas/API.PagedResponse_UpdateSystem.Models.Bundle'
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
    post:
      tags:
      - Bundles
      summary: Add a Bundle to the Update System
      description: No Documentation Found.
      operationId: Bundles_PostBundle
      parameters:
      - name: cloneFromBundleID
        in: query
        description: Optional. A BundleID from which to clone PackageTypetoBundleIDs.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
            text/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            application/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          text/json:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          application/xml:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          text/xml:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
        description: The bundle to add
        required: true
  /api/v2/Bundles/{ID}:
    get:
      tags:
      - Bundles
      summary: Get a specific Bundle by ID
      description: No Documentation Found.
      operationId: Bundles_GetBundle
      parameters:
      - name: ID
        in: path
        description: The Bundle ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
            text/json:
              schema:
                $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
            application/xml:
              schema:
                $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
            text/xml:
              schema:
                $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            application/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
    put:
      tags:
      - Bundles
      summary: Modify a Bundle in the Update System
      description: No Documentation Found.
      operationId: Bundles_PutBundle
      parameters:
      - name: ID
        in: path
        description: The unique ID of the Bundle
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          text/json:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          application/xml:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          text/xml:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
        description: The bundle to modify
        required: true
    delete:
      tags:
      - Bundles
      summary: Delete a Bundle
      description: No Documentation Found.
      operationId: Bundles_DeleteBundle
      parameters:
      - name: ID
        in: path
        description: The Bundle ID to Delete
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
components:
  schemas:
    UpdateSystem.Models.Bundle:
      required:
      - Description
      - UpdateGroupID
      - BundleNumber
      type: object
      properties:
        BundleID:
          description: Read-Only.
          type: string
        Description:
          description: The Bundle description.
          type: string
        UpdateGroupID:
          description: The update group this bundle belongs to.
          type: string
        BundleNumber:
          format: int32
          description: The bundle number
          type: integer
        Active:
          description: 'Default Value: false. During the creation of the Bundle, this field must be false.'
          type: boolean
    API.PagedResponse_UpdateSystem.Models.Bundle:
      description: A response containing a page of results and metadata concerning the results
      required:
      - Metadata
      - Entities
      type: object
      properties:
        Metadata:
          $ref: '#/components/schemas/API.PagedResponseMetadata'
          description: Metadata about this paged response
          readOnly: true
        Entities:
          description: The set of entities that make up this page.
          type: array
          items:
            $ref: '#/components/schemas/UpdateSystem.Models.Bundle'
          readOnly: true
    API.PagedResponseMetadata:
      description: Metadata for the paged response
      required:
      - TotalCount
      - Limit
      - Offset
      type: object
      properties:
        TotalCount:
          format: int32
          description: The total number of entities matching the request.
          type: integer
          readOnly: true
        Limit:
          format: int32
          description: The number of entities this paged response is limited to.
          type: integer
          readOnly: true
        Offset:
          format: int32
          description: The number of entities prior to this page of items.
          type: integer
          readOnly: true
    API.Models.ApiError:
      type: object
      properties:
        DeveloperMessage:
          type: string
        UserMessage:
          type: string
        ErrorCode:
          format: int32
          type: integer
        MoreInfo:
          type: string