openapi: 3.2.0 info: title: Broadlume BMS Dashboard 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: Dashboard paths: /{alias}/dashboardsales: get: operationId: salesQuicklist summary: Sales Quicklist tags: - Dashboard description: Sales quicklist by month over date range parameters: - name: alias in: path required: true schema: type: string description: The clientid for the API call. - name: company in: query required: true schema: type: string maxLength: 2 description: RollMaster company. - name: startdate in: query required: true schema: type: string maxLength: 8 description: Format - YYYYMMDD - name: enddate in: query required: true schema: type: string maxLength: 8 description: Format - YYYYMMDD - name: customer in: query required: false schema: type: string maxLength: 8 responses: '200': description: OK content: application/json: schema: type: object properties: '0': type: array items: type: string /{alias}/dashboardar: get: operationId: arQuicklist summary: AR Quicklist tags: - Dashboard description: Quicklist for AR buckets parameters: - name: alias in: path required: true schema: type: string description: The clientid for the API call. - name: company in: query required: true schema: type: string maxLength: 2 description: RollMaster company. - name: customer in: query required: false schema: type: string maxLength: 8 responses: '200': description: OK content: application/json: schema: type: object properties: '0': type: array items: type: string /{alias}/dashboardap: get: operationId: apQuicklist summary: AP Quicklist tags: - Dashboard description: Quicklist for AP buckets parameters: - name: alias in: path required: true schema: type: string description: The clientid for the API call. - name: company in: query required: true schema: type: string maxLength: 2 description: RollMaster company. responses: '200': description: OK content: application/json: schema: type: object properties: '0': type: array items: type: string /{alias}/dashboardinventory: get: operationId: inventoryValuationQuicklist summary: Inventory Valuation Quicklist tags: - Dashboard description: Inventory Valuation Quicklist parameters: - name: alias in: path required: true schema: type: string description: The clientid for the API call. - name: company in: query required: true schema: type: string maxLength: 2 description: RollMaster company. responses: '200': description: OK content: application/json: schema: type: object properties: '0': type: array items: type: string /{alias}/dashboardworkinprocess: get: operationId: workInProcessQuicklist summary: Work in Process quicklist tags: - Dashboard description: Work in Process quicklist parameters: - name: alias in: path required: true schema: type: string description: The clientid for the API call. - name: company in: query required: true schema: type: string maxLength: 2 description: RollMaster company. - name: customer in: query required: false schema: type: string maxLength: 8 responses: '200': description: OK content: application/json: schema: type: object properties: '0': type: array items: type: string /{alias}/dashboardfiscal: get: operationId: fiscalYearQuicklist summary: Fiscal Year Quicklist tags: - Dashboard description: Fiscal year sales by period parameters: - name: alias in: path required: true schema: type: string description: The clientid for the API call. - name: company in: query required: true schema: type: string maxLength: 2 description: RollMaster company. responses: '200': description: OK content: application/json: schema: type: object properties: '0': type: array items: 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