Whiplash Merchandising bundle_items API

Bundle Items are components that make up a bundle, defining the quantity and relationship of items within product bundles.

Operations 3

GET /api/v2/bundle_items/{id} Retrieve a bundle item #
PUT /api/v2/bundle_items/{id} Update a bundle item's quantity #
DELETE /api/v2/bundle_items/{id} Destroy a bundle item #

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/whiplash-merchandising-bundle-items-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

whiplash-merchandising-bundle-items-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Rydership Bundle Items API
  description: 'The Rydership V2 API is open by invite only. Fill out request form <a href="https://help.whiplash.com/hc/en-us/requests/new?ticket_form_id=360001303092"> here</a>.

    <br>

    <a href="api.v2.html">V2 documentation</a>

    <br>

    <a href="api.v2-1.html">V2.1 documentation</a>

    '
  contact:
    name: Rydership Development Team
    email: tech@whiplash.com
    url: https://www.getwhiplash.com
  x-logo:
    url: https://wl-s3-assets.s3.amazonaws.com/rydership/RyderShip-horizontal-safe-padding.svg
    backgroundColor: '#FFFFFF'
    altText: RyderShip
servers:
- url: ''
  description: Base Path
tags:
- name: bundle_items
  description: Bundle Items are components that make up a bundle, defining the quantity and relationship of items within product bundles.
paths:
  /api/v2/bundle_items/{id}:
    get:
      operationId: GetApiV2BundleItemsId
      tags:
      - bundle_items
      summary: Retrieve a bundle item
      description: Get a bundle item
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Get a bundle item
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiV2EntitiesBundleItem'
              examples: null
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
        '403':
          description: forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
    put:
      operationId: PutApiV2BundleItemsId
      tags:
      - bundle_items
      summary: Update a bundle item's quantity
      description: Update a bundle item for a bundle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Update a bundle item for a bundle
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiV2EntitiesBundleItem'
              examples: null
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
        '403':
          description: forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
        '422':
          description: unprocessable_entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PutApiV2BundleItemsIdRequest'
    delete:
      operationId: DeleteApiV2BundleItemsId
      tags:
      - bundle_items
      summary: Destroy a bundle item
      description: Destroy a bundle item for a bundle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Successfully deleted
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
        '403':
          description: forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
        '422':
          description: unprocessable_entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSharedEntitiesApiError'
components:
  schemas:
    ApiSharedEntitiesApiError:
      type: object
      title: Shared
      properties:
        message:
          type: string
          description: error message
      additionalProperties: false
    ApiV2EntitiesBundleItem:
      type: object
      title: V2
      properties:
        id:
          type: integer
          format: int32
          description: the bundle item id
        parent_item_id:
          type:
          - integer
          - 'null'
          format: int32
          description: the bundle item parent item id (admins only)
        item_id:
          type:
          - integer
          - 'null'
          format: int32
          description: the bundle item item id
        bundle_id:
          type:
          - integer
          - 'null'
          format: int32
          description: the bundle item bundle id (admins only)
        quantity:
          type:
          - integer
          - 'null'
          format: int32
          description: the bundle item quantity
        max_per_package:
          type:
          - integer
          - 'null'
          format: int32
          description: the bundle item max per package (admins only)
        created_at:
          type:
          - string
          - 'null'
          format: date-time
          description: the bundle item creation date and time
        updated_at:
          type:
          - string
          - 'null'
          format: date-time
          description: the bundle item last update date and time
        item_quantity:
          type: string
        item_name:
          type: string
      additionalProperties: false
    PutApiV2BundleItemsIdRequest:
      type: object
      properties:
        quantity:
          type: integer
          format: int32
          description: the bundle item quantity