ECI Solutions BOM/TRANSACTION API

The BOM/TRANSACTION API from ECI Solutions — 10 operation(s) for bom/transaction.

Operations 10

GET /api/BOM/Transaction/MaterialIssueLine/GetAllMaterialIssueLines/{pageSize}/{pageNumber} Returns all existing MaterialIssueLines with pagination #
GET /api/BOM/Transaction/MaterialIssueLine/GetMaterialIssueLines/{materialIssueId} Returns material issue lines for a given M1 material issue id. #
GET /api/BOM/Transaction/MaterialIssue/GetAllMaterialIssues/{pageSize}/{pageNumber} Returns all existing MaterialIssues with pagination #
GET /api/BOM/Transaction/MaterialIssue/GetMaterialIssue/{materialIssueId} Returns material issue for a given M1 material issue id. #
GET /api/BOM/Transaction/MfgReceipt/GetAllMfgReceipts/{pageSize}/{pageNumber} Returns all existing MfgReceipts with pagination #
GET /api/BOM/Transaction/MfgReceipt/GetMfgReceipt/{mfgReceiptId} Returns mfg receipt for a given mfg receipt id #
GET /api/BOM/Transaction/Receipt/GetAllReceipts/{pageSize}/{pageNumber} Retrieves all M1 receipts with pagination support #
GET /api/BOM/Transaction/Receipt/GetReceipt/{receiptId} Returns receipt for a given receipt id #
GET /api/BOM/Transaction/ReceiptLine/GetAllReceiptLines/{pageSize}/{pageNumber} Retrieves all M1 receipt lines with pagination support #
GET /api/BOM/Transaction/ReceiptLine/GetReceiptLine/{receiptId} Returns all receipt lines for a given receipt 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-transaction-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-transaction-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: M1 Public BOM/TRANSACTION 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/TRANSACTION
paths:
  /api/BOM/Transaction/MaterialIssueLine/GetAllMaterialIssueLines/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns all existing MaterialIssueLines with pagination
      operationId: BOMMaterialIssueLines_GetAllMaterialIssueLineAsync
      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/BOMMaterialIssueLineDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMaterialIssueLineDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMaterialIssueLineDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMaterialIssueLineDto'
        '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/Transaction/MaterialIssueLine/GetMaterialIssueLines/{materialIssueId}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns material issue lines for a given M1 material issue id.
      operationId: BOMMaterialIssueLines_GetMaterialIssueLinesAsync
      parameters:
      - name: materialIssueId
        in: path
        description: The M1 material issue Id or GUID of the material issue as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/CTMBOMMaterialIssueLineDto'
            application/json:
              schema:
                $ref: '#/components/schemas/CTMBOMMaterialIssueLineDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMMaterialIssueLineDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMMaterialIssueLineDto'
        '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/Transaction/MaterialIssue/GetAllMaterialIssues/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns all existing MaterialIssues with pagination
      operationId: BOMMaterialIssues_GetAllMaterialIssuesAsync
      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/BOMMaterialIssueDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMaterialIssueDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMaterialIssueDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMaterialIssueDto'
        '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/Transaction/MaterialIssue/GetMaterialIssue/{materialIssueId}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns material issue for a given M1 material issue id.
      operationId: BOMMaterialIssues_GetMaterialIssueAsync
      parameters:
      - name: materialIssueId
        in: path
        description: The M1 material issue Id or GUID of the material issue as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMMaterialIssueDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMMaterialIssueDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMMaterialIssueDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMMaterialIssueDto'
        '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/Transaction/MfgReceipt/GetAllMfgReceipts/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns all existing MfgReceipts with pagination
      operationId: BOMMfgReceipts_GetAllMfgReceiptAsync
      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/BOMMfgReceiptDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMfgReceiptDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMfgReceiptDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMMfgReceiptDto'
        '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/Transaction/MfgReceipt/GetMfgReceipt/{mfgReceiptId}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns mfg receipt for a given mfg receipt id
      description: This endpoint retrieves a mfg receipt based on its identifier.
      operationId: BOMMfgReceipts_GetMfgReceiptAsync
      parameters:
      - name: mfgReceiptId
        in: path
        description: The mfg receipt id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMMfgReceiptDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMMfgReceiptDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMMfgReceiptDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMMfgReceiptDto'
        '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/Transaction/Receipt/GetAllReceipts/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Retrieves all M1 receipts with pagination support
      description: This endpoint returns a paginated list of all receipts. Pagination is supported via the pageSize and pageNumber parameters.
      operationId: BOMReceipt_GetAllReceiptsAsync
      parameters:
      - name: pageSize
        in: path
        description: 'The number of receipts to return per page (default: 1000).'
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      - name: pageNumber
        in: path
        description: 'The page number to retrieve (default: 0).'
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptDto'
        '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/Transaction/Receipt/GetReceipt/{receiptId}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns receipt for a given receipt id
      description: This endpoint retrieves a receipt based on its identifier.
      operationId: BOMReceipt_GetReceiptAsync
      parameters:
      - name: receiptId
        in: path
        description: The receipt id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMReceiptDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMReceiptDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMReceiptDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMReceiptDto'
        '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/Transaction/ReceiptLine/GetAllReceiptLines/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Retrieves all M1 receipt lines with pagination support
      description: This endpoint returns a paginated list of all receipt lines. Pagination is supported via the pageSize and pageNumber parameters.
      operationId: BOMReceiptLine_GetAllReceiptLinesAsync
      parameters:
      - name: pageSize
        in: path
        description: 'The number of receipt lines to return per page (default: 1000).'
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      - name: pageNumber
        in: path
        description: 'The page number to retrieve (default: 0).'
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptLineDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptLineDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptLineDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMReceiptLineDto'
        '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/Transaction/ReceiptLine/GetReceiptLine/{receiptId}:
    get:
      tags:
      - BOM/TRANSACTION
      summary: Returns all receipt lines for a given receipt id
      description: This endpoint retrieves all receipt lines based on receipt identifier.
      operationId: BOMReceiptLine_GetReceiptAsync
      parameters:
      - name: receiptId
        in: path
        description: The receipt id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMReceiptLineDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMReceiptLineDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMReceiptLineDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMReceiptLineDto'
        '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
            appli

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