ECI Solutions BOM/PART API

The BOM/PART API from ECI Solutions — 23 operation(s) for bom/part.

Operations 23

GET /api/BOM/Part/GetParts/{partId} Returns part details for a given M1 part id or GUID. #
GET /api/BOM/Part/GetAllParts/{pageSize}/{pageNumber} Returns all existing parts with pagination #
POST /api/BOM/Part/PostParts Creates a part with the required attributes #
GET /api/BOM/Part/GetPartRevisions/{partId} Returns part and part revision details for a given M1 part id or GUID. #
POST /api/BOM/Part/PostPartRevisions Creates a part and relevant part revisions based on input parameter #
GET /api/BOM/Part/GetPartAssembly/{methodId}/{methodRevisionId}/{methodAssemblyId} Returns part and part assembly details for a given M1 method id, method… #
GET /api/BOM/Part/GetPartAssembly/{methodAsmGuid} Returns part and part assembly details for a given M1 method assembly GUID #
POST /api/BOM/Part/PostPartAssembly Creates a part assembly based on input parameter #
DELETE /api/BOM/Part/DeletePartAssembly/{methodId}/{methodRevisionId}/{methodAssemblyId} Deletes a part assembly for method id, method revision id and method assembly… #
DELETE /api/BOM/Part/DeletePartAssembly/{methodAsmGuid} Deletes a part assembly for method assembly GUID. #
POST /api/BOM/Part/PostPartOperation Creates a part operation based on input parameter #
DELETE /api/BOM/Part/DeletePartOperation/{methodId}/{methodRevisionId}/{methodAssemblyId}/{methodOperationId} Deletes a part operation for method id, method revision id, method assembly id… #
DELETE /api/BOM/Part/DeletePartOperation/{methodOperationGuid} Deletes a part operation for method operation GUID. #
GET /api/BOM/Part/GetPartMaterial/{methodId}/{methodRevisionId}/{methodAssemblyId} Returns all part materials for the given combination of identifiers: methodId… #
GET /api/BOM/Part/GetPartMaterial/{methodMaterialGuid} Returns part material for method material GUID. #
POST /api/BOM/Part/PostPartMaterial Creates a part material based on input parameter #
DELETE /api/BOM/Part/DeletePartMaterial/{methodId}/{methodRevisionId}/{methodAssemblyId}/{methodMaterialId} Deletes a part material for method id, method revision id, method assembly id… #
DELETE /api/BOM/Part/DeletePartMaterial/{methodMaterialGuid} Deletes a part material for method material GUID. #
GET /api/BOM/Part/GetPartMethodBOM/{partId}/{partRevisionId}/{partAssemblyId} Returns part method BOM details for a given M1 part,revision and assembly. #
GET /api/BOM/Part/GetPartMethodBOM/{partAssemblyGuid} Returns part method BOM details for a given part assembly guid. #
GET /api/BOM/Part/GetPartMethodGUIDs/{partId} Returns part method GUIDs for a given part. #
GET /api/BOM/Part/GetPartBinDetails/{partId} Returns part and part bin details for a given M1 part id or GUID. #
GET /api/BOM/Part/GetAllPartBinDetails/{pageSize}/{pageNumber} Returns all existing part bin details with pagination #

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-part-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-part-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: M1 Public BOM/PART 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/PART
paths:
  /api/BOM/Part/GetParts/{partId}:
    get:
      tags:
      - BOM/PART
      summary: Returns part details for a given M1 part id or GUID.
      operationId: BOMPart_GetPartsByIdAsync
      parameters:
      - name: partId
        in: path
        description: The M1 Part Id or GUID of the part as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
        '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/Part/GetAllParts/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/PART
      summary: Returns all existing parts with pagination
      operationId: BOMPart_GetAllPartsAsync
      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:
                $ref: '#/components/schemas/BOMPartDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMPartDto'
        '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/Part/PostParts:
    post:
      tags:
      - BOM/PART
      summary: Creates a part with the required attributes
      operationId: BOMPart_PostPartAsync
      requestBody:
        description: The part object as BOMPartDto with the incoming data.
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/BOMPartDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/BOMPartDto'
          text/json:
            schema:
              $ref: '#/components/schemas/BOMPartDto'
          application/json:
            schema:
              $ref: '#/components/schemas/BOMPartDto'
        required: true
        x-bodyName: part
      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/Part/GetPartRevisions/{partId}:
    get:
      tags:
      - BOM/PART
      summary: Returns part and part revision details for a given M1 part id or GUID.
      operationId: BOMPart_GetPartRevisionsAsync
      parameters:
      - name: partId
        in: path
        description: The M1 Part Id or GUID of the part as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            application/json:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
        '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/Part/PostPartRevisions:
    post:
      tags:
      - BOM/PART
      summary: Creates a part and relevant part revisions based on input parameter
      operationId: BOMPart_PostPartRevisionsAsync
      requestBody:
        description: The part revision object as CTMBOMPartRevisionDto
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/CTMBOMPartRevisionDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/CTMBOMPartRevisionDto'
          text/json:
            schema:
              $ref: '#/components/schemas/CTMBOMPartRevisionDto'
          application/json:
            schema:
              $ref: '#/components/schemas/CTMBOMPartRevisionDto'
        required: true
        x-bodyName: partRevision
      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/Part/GetPartAssembly/{methodId}/{methodRevisionId}/{methodAssemblyId}:
    get:
      tags:
      - BOM/PART
      summary: Returns part and part assembly details for a given M1 method id, method…
      operationId: BOMPart_GetPartAssemblyAsync
      parameters:
      - name: methodId
        in: path
        description: The part method id as string
        required: true
        style: simple
        schema:
          type: string
      - name: methodRevisionId
        in: path
        description: The part method revision id as string. If wants to pass BLANK revision id, use underscore ("_") character instead
        required: true
        style: simple
        schema:
          type: string
      - name: methodAssemblyId
        in: path
        description: The part method assembly id as integer
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            application/json:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
        '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/Part/GetPartAssembly/{methodAsmGuid}:
    get:
      tags:
      - BOM/PART
      summary: Returns part and part assembly details for a given M1 method assembly GUID
      operationId: BOMPart_GetPartAssemblyAsync
      parameters:
      - name: methodAsmGuid
        in: path
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            application/json:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMPartRevisionDto'
        '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/Part/PostPartAssembly:
    post:
      tags:
      - BOM/PART
      summary: Creates a part assembly based on input parameter
      operationId: BOMPart_PostPartAssemblyAsync
      requestBody:
        description: The part assembly object as BOMPartAssembly
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/BOMPartAssemblyDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/BOMPartAssemblyDto'
          text/json:
            schema:
              $ref: '#/components/schemas/BOMPartAssemblyDto'
          application/json:
            schema:
              $ref: '#/components/schemas/BOMPartAssemblyDto'
        required: true
        x-bodyName: partAssembly
      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/Part/DeletePartAssembly/{methodId}/{methodRevisionId}/{methodAssemblyId}:
    delete:
      tags:
      - BOM/PART
      summary: Deletes a part assembly for method id, method revision id and method assembly…
      operationId: BOMPart_DeletePartAssemblyAsync
      parameters:
      - name: methodId
        in: path
        description: The part method id as string
        required: true
        style: simple
        schema:
          type: string
      - name: methodRevisionId
        in: path
        description: The part method revision id as string. If wants to pass BLANK revision id, use underscore ("_") character instead
        required: true
        style: simple
        schema:
          type: string
      - name: methodAssemblyId
        in: path
        description: The part method assembly id as integer
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      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/Part/DeletePartAssembly/{methodAsmGuid}:
    delete:
      tags:
      - BOM/PART
      summary: Deletes a part assembly for method assembly GUID.
      operationId: BOMPart_DeletePartAssemblyAsync
      parameters:
      - name: methodAsmGuid
        in: path
        description: The methodAsmGuid as a string
        required: true
        style: simple
        schema:
          type: string
      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/Part/PostPartOperation:
    post:
      tags:
      - BOM/PART
      summary: Creates a part operation based on input parameter
      operationId: BOMPart_PostPartOperationAsync
      requestBody:
        description: The part operation as BOMPartAssembly
        content:
          text/xml:
            schema:
              $ref: '#/components

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