ECI Solutions BOM/SALES API

The BOM/SALES API from ECI Solutions — 25 operation(s) for bom/sales.

Operations 25

GET /api/BOM/Sales/GetAllQuoteAssemblies/{pageSize}/{pageNumber} Returns all existing QuoteAssemblies with pagination #
GET /api/BOM/Sales/GetQuoteAssemblies/{quoteId} Returns QuoteAssemblies for a given Quote id #
GET /api/BOM/Sales/GetQuoteAssemblies/{quoteId}/{quoteLineId} Returns QuoteAssemblies for a given Quote id and Quote Line id #
POST /api/BOM/Sales/PostQuoteAssembly Posts a new QuoteAssembly #
GET /api/BOM/Sales/GetAllQuoteLines/{pageSize}/{pageNumber} Returns all existing QuoteLines with pagination #
GET /api/BOM/Sales/GetQuoteLines/{quoteId} Returns quote and quote lines details for a given M1 quote id or GUID. #
GET /api/BOM/Sales/GetQuoteLine/{quoteId}/{quoteLineId} Returns QuoteLine for a given Quote id and QuoteLine Id #
POST /api/BOM/Sales/PostQuoteLine Posts a new QuoteLine #
GET /api/BOM/Sales/GetAllQuoteMaterials/{pageSize}/{pageNumber} Returns all existing QuoteMaterials with pagination #
GET /api/BOM/Sales/GetQuoteMaterials/{quoteId} Returns a list of QuoteMaterial for a given Quote id #
GET /api/BOM/Sales/GetQuoteMaterials/{quoteId}/{quoteLineId} Returns a list of QuoteMaterial for a given QuoteId and QuoteLineId #
GET /api/BOM/Sales/GetQuoteMaterials/{quoteId}/{quoteLineId}/{quoteAssemblyId} Returns a list of QuoteMaterial for a given QuoteId, QuoteLineId and… #
POST /api/BOM/Sales/PostQuoteMaterial Posts a new QuoteMaterial #
GET /api/BOM/Sales/GetAllQuoteOperations/{pageSize}/{pageNumber} Returns all existing QuoteOperations with pagination #
GET /api/BOM/Sales/GetQuoteOperations/{quoteId} Returns a list of QuoteOperations for a given Quote id #
GET /api/BOM/Sales/GetQuoteOperations/{quoteId}/{quoteLineId} Returns QuoteOperation for a given Quote and QuoteLine id #
GET /api/BOM/Sales/GetQuoteOperations/{quoteId}/{quoteLineId}/{quoteAssemblyId} Returns QuoteOperation for a given Quote, QuoteLine, and QuoteAssembly id #
GET /api/BOM/Sales/GetAllQuoteQuantities/{pageSize}/{pageNumber} Returns all existing QuoteQuantities with pagination #
GET /api/BOM/Sales/GetQuoteQuantities/{quoteId} Returns QuoteQuantities for a given Quote Id #
GET /api/BOM/Sales/GetQuoteQuantities/{quoteId}/{quoteLineId} Returns QuoteQuantities for a given Quote Id and Quote Line Id #
GET /api/BOM/Sales/GetAllQuotes/{pageSize}/{pageNumber} Returns all existing Quotes with pagination #
GET /api/BOM/Sales/GetQuote/{quoteId} Returns Quote for a given Quote id #
POST /api/BOM/Sales/PostQuote Posts a new Quote #
GET /api/BOM/Sales/GetAllSalesOrders/{pageSize}/{pageNumber} Returns all existing SalesOrders with pagination #
GET /api/BOM/Sales/GetSalesOrder/{salesOrderId} Returns SalesOrder for a given SalesOrder id #

Documentation

Specifications

Other Resources

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/eci-solutions-bom-sales-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

eci-solutions-bom-sales-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: M1 Public BOM/SALES API
  description: '## Developer Notes for the M1 Public API (ERP resource):


    ### Hosted Environment


    If you are using the public API for a hosted M1 customer, you must connect to the public API using the Integration Engine.'
  contact:
    name: ECI Software Solutions - M1
    url: https://www.ecisolutions.com/manufacturers-and-job-shops/m1
  version: v1
servers:
- url: https://api-m1.integrations.ecimanufacturing.com
  description: API Host
security:
- oauth2: []
tags:
- name: BOM/SALES
paths:
  /api/BOM/Sales/GetAllQuoteAssemblies/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/SALES
      summary: Returns all existing QuoteAssemblies with pagination
      operationId: BOMQuoteAssemblies_GetAllQuoteAssemblyAsync
      parameters:
      - name: pageSize
        in: path
        description: The required size of the pagination. By default 1000.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      - name: pageNumber
        in: path
        description: The required number of page from pagination. By default 0, which is the first page.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetQuoteAssemblies/{quoteId}:
    get:
      tags:
      - BOM/SALES
      summary: Returns QuoteAssemblies for a given Quote id
      description: This endpoint retrieves a list of QuoteAssemblies based on Quote identifier.
      operationId: BOMQuoteAssemblies_GetQuoteAssemblyAsync
      parameters:
      - name: quoteId
        in: path
        description: The Quote id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetQuoteAssemblies/{quoteId}/{quoteLineId}:
    get:
      tags:
      - BOM/SALES
      summary: Returns QuoteAssemblies for a given Quote id and Quote Line id
      description: This endpoint retrieves a list of QuoteAssemblies based on Quote and QuoteLine identifier.
      operationId: BOMQuoteAssemblies_GetQuoteAssemblyAsync
      parameters:
      - name: quoteId
        in: path
        description: The Quote id as a string
        required: true
        style: simple
        schema:
          type: string
      - name: quoteLineId
        in: path
        description: The QuoteLine id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteAssemblyDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/PostQuoteAssembly:
    post:
      tags:
      - BOM/SALES
      summary: Posts a new QuoteAssembly
      operationId: BOMQuoteAssemblies_PostQuoteAssemblyAsync
      requestBody:
        description: The QuoteAssembly data to be posted.
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteAssemblyDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteAssemblyDto'
          text/json:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteAssemblyDto'
          application/json:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteAssemblyDto'
        required: true
        x-bodyName: quoteAssembly
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetAllQuoteLines/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/SALES
      summary: Returns all existing QuoteLines with pagination
      operationId: BOMQuoteLines_GetAllQuoteLineAsync
      parameters:
      - name: pageSize
        in: path
        description: The required size of the pagination. By default 1000.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      - name: pageNumber
        in: path
        description: The required number of page from pagination. By default 0, which is the first page.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteLineDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteLineDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteLineDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteLineDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetQuoteLines/{quoteId}:
    get:
      tags:
      - BOM/SALES
      summary: Returns quote and quote lines details for a given M1 quote id or GUID.
      operationId: BOMQuoteLines_GetQuoteLinesAsync
      parameters:
      - name: quoteId
        in: path
        description: The M1 Quote Id or GUID of the quote as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/CTMBOMQuoteLineDto'
            application/json:
              schema:
                $ref: '#/components/schemas/CTMBOMQuoteLineDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMQuoteLineDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMQuoteLineDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetQuoteLine/{quoteId}/{quoteLineId}:
    get:
      tags:
      - BOM/SALES
      summary: Returns QuoteLine for a given Quote id and QuoteLine Id
      description: This endpoint retrieves a QuoteLine identified by the Quote identifier and its own unique identifier.
      operationId: BOMQuoteLines_GetQuoteLineAsync
      parameters:
      - name: quoteId
        in: path
        description: The Quote id as a string
        required: true
        style: simple
        schema:
          type: string
      - name: quoteLineId
        in: path
        description: The QuoteLine id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMQuoteLineDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMQuoteLineDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMQuoteLineDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMQuoteLineDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/PostQuoteLine:
    post:
      tags:
      - BOM/SALES
      summary: Posts a new QuoteLine
      operationId: BOMQuoteLines_PostQuoteLineAsync
      requestBody:
        description: The QuoteLine data to be posted.
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteLineDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteLineDto'
          text/json:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteLineDto'
          application/json:
            schema:
              $ref: '#/components/schemas/BOMCreateQuoteLineDto'
        required: true
        x-bodyName: quoteLine
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetAllQuoteMaterials/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/SALES
      summary: Returns all existing QuoteMaterials with pagination
      operationId: BOMQuoteMaterials_GetAllQuoteMaterialAsync
      parameters:
      - name: pageSize
        in: path
        description: The required size of the pagination. By default 1000.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      - name: pageNumber
        in: path
        description: The required number of page from pagination. By default 0, which is the first page.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '415':
          description: UnsupportedMediaType
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
        '500':
          description: InternalServerError
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
  /api/BOM/Sales/GetQuoteMaterials/{quoteId}:
    get:
      tags:
      - BOM/SALES
      summary: Returns a list of QuoteMaterial for a given Quote id
      description: This endpoint retrieves QuoteMaterials based on Quote identifier.
      operationId: BOMQuoteMaterials_GetQuoteMaterialAsync
      parameters:
      - name: quoteId
        in: path
        description: The Quote id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMQuoteMaterialDto'
        '400':
          description: BadRequest
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseMessageDto'
        '401':
          description: Unauthorized
          content:
            text/json: {}
            application/json: {}
            application/xml: {}
            text/xml: {}
        '404':
          description: NotFound
          content:
            text/json:
              schema:
                type: string
            application/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              sche

# --- truncated at 32 KB (99 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/eci-solutions/refs/heads/main/openapi/eci-solutions-bom-sales-api-openapi.yml