Broadlume Bundle API

The Bundle API from Broadlume — 1 operation(s) for bundle.

Operations 3

POST /{alias}/bundle Create Bundle(Job/Quote) Record #
PATCH /{alias}/bundle Update Bundle(Job/Quote) Name by sequence #
GET /{alias}/bundle Return Bundle(Job/Quote) Name by sequence #

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/broadlume-bundle-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

broadlume-bundle-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Broadlume BMS Bundle API
  version: v1
  summary: Business management API for Broadlume BMS, the flooring ERP formerly known as RollMaster.
  description: 'REST API for Broadlume BMS (formerly RollMaster), Broadlume''s business management system for flooring retailers. Covers orders, quotes, leads, customers, products and catalog, inventory, purchase orders, invoicing, accounts receivable, general ledger, installation scheduling, e-documents, handheld/barcode operations, dashboards and reporting.


    Transcribed by API Evangelist from Broadlume''s own published developer portal at https://developer.broadlume.com/bms — paths, methods, parameters and response fields are taken verbatim from that reference. Broadlume acquired RollMaster in November 2021, which is why the documented base URL remains api.rmaster.com.'
  contact:
    name: Broadlume Developer Portal
    url: https://developer.broadlume.com/bms
servers:
- url: https://api.rmaster.com/api
  description: Production
security:
- apiKeyAuth: []
  sessionToken: []
tags:
- name: Bundle
paths:
  /{alias}/bundle:
    post:
      operationId: createBundleJobQuoteRecord
      summary: Create Bundle(Job/Quote) Record
      tags:
      - Bundle
      description: Creates Bundle Record for a Quote or Job based on 'type' of ('quote' or 'order')
      parameters:
      - name: alias
        in: path
        required: true
        schema:
          type: string
        description: The clientid for the API call.
      - name: type
        in: query
        required: true
        schema:
          type: string
          maxLength: 5
        description: quote, order (Sets mode of call)
      - name: bundlename
        in: query
        required: true
        schema:
          type: string
          maxLength: 30
      - name: order
        in: query
        required: false
        schema:
          type: string
          maxLength: 6
        description: required when type is order
      - name: quote
        in: query
        required: false
        schema:
          type: string
          maxLength: 6
        description: required when type is quote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                company:
                  type: string
                  maxLength: 2
                  description: RollMaster company.
                branch:
                  type: string
                  maxLength: 2
                  description: RollMaster branch.
              required:
              - company
              - branch
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  BUNDLE_ORDNO:
                    type: string
                  BUNDLE_SEQ:
                    type: string
                  BUNDLE_NAME:
                    type: string
    patch:
      operationId: updateBundleJobQuoteNameBySequence
      summary: Update Bundle(Job/Quote) Name by sequence
      tags:
      - Bundle
      description: Updates Bundle Name by sequence for a Quote or Job based on 'type' of ('quote' or 'order')
      parameters:
      - name: alias
        in: path
        required: true
        schema:
          type: string
        description: The clientid for the API call.
      - name: type
        in: query
        required: true
        schema:
          type: string
          maxLength: 5
        description: quote, order (Sets mode of call)
      - name: bundleseq
        in: query
        required: true
        schema:
          type: string
          maxLength: 3
        description: sequence to rename
      - name: bundlename
        in: query
        required: true
        schema:
          type: string
          maxLength: 30
      - name: order
        in: query
        required: false
        schema:
          type: string
          maxLength: 6
        description: required when type is order
      - name: quote
        in: query
        required: false
        schema:
          type: string
          maxLength: 6
        description: required when type is quote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                company:
                  type: string
                  maxLength: 2
                  description: RollMaster company.
                branch:
                  type: string
                  maxLength: 2
                  description: RollMaster branch.
              required:
              - company
              - branch
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  BUNDLE_ORDNO:
                    type: string
                  BUNDLE_SEQ:
                    type: string
                  BUNDLE_NAME:
                    type: string
    get:
      operationId: returnBundleJobQuoteNameBySequence
      summary: Return Bundle(Job/Quote) Name by sequence
      tags:
      - Bundle
      description: Return Bundle Name by sequence for a Quote or Job based on 'type' of ('quote' or 'order') or all if no sequence provided
      parameters:
      - name: alias
        in: path
        required: true
        schema:
          type: string
        description: The clientid for the API call.
      - name: type
        in: query
        required: true
        schema:
          type: string
          maxLength: 5
        description: quote, order (Sets mode of call)
      - name: bundleseq
        in: query
        required: false
        schema:
          type: string
          maxLength: 3
        description: when not sent all
      - name: order
        in: query
        required: false
        schema:
          type: string
          maxLength: 6
        description: required when type is order
      - name: quote
        in: query
        required: false
        schema:
          type: string
          maxLength: 6
        description: required when type is quote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                company:
                  type: string
                  maxLength: 2
                  description: RollMaster company.
                branch:
                  type: string
                  maxLength: 2
                  description: RollMaster branch.
              required:
              - company
              - branch
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  BUNDLE_ORDNO:
                    type: string
                  BUNDLE_SEQ:
                    type: string
                  BUNDLE_NAME:
                    type: string
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key issued by Broadlume, required on every request.
    sessionToken:
      type: apiKey
      in: header
      name: token
      description: User session token obtained from POST /{alias}/token. Sessions expire after a server-specified idle timeout (default 5 minutes); refresh with the keepalive endpoint.
externalDocs:
  description: Broadlume BMS developer portal
  url: https://developer.broadlume.com/bms