ECI Solutions BOM/JOB API

The BOM/JOB API from ECI Solutions — 24 operation(s) for bom/job.

Operations 24

GET /api/BOM/Job/GetJobGUIDs/{jobId}/{partId} Returns GUIDs for a given jobid and/or partid. #
GET /api/BOM/Job/GetJobMethod/{jobId} Returns job details for a given M1 job id or GUID. #
GET /api/BOM/Job/GetAllJobs/{pageSize}/{pageNumber} Returns a list of all BOM jobs with pagination #
GET /api/BOM/Job/GetJob/{jobId} Returns a specific BOM job based on the provided job ID #
POST /api/BOM/Job/PostJob Posts a new BOM job #
POST /api/BOM/Job/UpdateSchedulingDetails/{jobId} Updates the scheduling details for a specific job #
GET /api/BOM/Job/GetJobAssembly/{jobId}/{jobAssemblyId} Returns job assembly details for a given job and assembly id #
GET /api/BOM/Job/GetJobAssemblies/{jobId} Returns JobAssembly for a given JobAssembly id #
GET /api/BOM/Job/GetAllJobAssemblies/{pageSize}/{pageNumber} Returns all existing JobAssemblies with pagination #
POST /api/BOM/Job/PostJobAssembly Creates a job assembly based on input parameter #
DELETE /api/BOM/Job/DeleteJobAssembly/{jobId}/{jobAssemblyId} Deletes a job assembly based on input parameters #
GET /api/BOM/Job/GetJobMaterial/{jobId}/{jobAssemblyId}/{jobMaterialId} Returns job material details for a given job,assembly and material id #
GET /api/BOM/Job/GetAllJobMaterials/{pageSize}/{pageNumber} Returns all existing JobMaterials with pagination #
POST /api/BOM/Job/PostJobMaterial Posts a new JobMaterial #
DELETE /api/BOM/Job/DeleteJobMaterial/{jobId}/{jobAssemblyId}/{jobMaterialId} Deletes a job material based on input parameters #
GET /api/BOM/Job/GetJobOperation/{jobId}/{jobAssemblyId}/{jobOperationId} Returns job operation details for a given job,assembly and operation id #
GET /api/BOM/Job/GetAllJobOperations/{pageSize}/{pageNumber} Returns all existing JobOperations with pagination #
POST /api/BOM/Job/PostJobOperation Posts a new JobOperation #
DELETE /api/BOM/Job/DeleteJobOperation/{jobId}/{jobAssemblyId}/{jobOperationId} Deletes a job operation based on input parameters #
GET /api/BOM/Job/GetAllTimecardLines/{pageSize}/{pageNumber} Returns all existing TimecardLines with pagination #
GET /api/BOM/Job/GetTimecardLine/{timecardId}/{timecardLineId} Returns TimecardLine for a given Timecard id containing TimecardLine id #
GET /api/BOM/Job/GetAllTimecards/{pageSize}/{pageNumber} Returns all existing Timecards with pagination #
GET /api/BOM/Job/GetTimecard/{timecardId} Returns Timecard for a given Timecard id #
GET /api/BOM/Job/GetTimecard/{timecardId}/{employeeId} Returns Timecard for a given Timecard id and Employee 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-job-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-job-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: M1 Public BOM/JOB 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/JOB
paths:
  /api/BOM/Job/GetJobGUIDs/{jobId}/{partId}:
    get:
      tags:
      - BOM/JOB
      summary: Returns GUIDs for a given jobid and/or partid.
      operationId: BOMJob_GetJobGUIDsAsync
      parameters:
      - name: jobId
        in: path
        description: The jobId or section of jobid as string
        required: true
        style: simple
        schema:
          type: string
      - name: partId
        in: path
        description: The partId or section of partid as string (optional)
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMJobGuidsDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMJobGuidsDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMJobGuidsDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMJobGuidsDto'
        '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/Job/GetJobMethod/{jobId}:
    get:
      tags:
      - BOM/JOB
      summary: Returns job details for a given M1 job id or GUID.
      operationId: BOMJob_GetJobMethodAsync
      parameters:
      - name: jobId
        in: path
        description: The M1 job Id or GUID of the job as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/CTMBOMJobMethodDto'
            application/json:
              schema:
                $ref: '#/components/schemas/CTMBOMJobMethodDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMJobMethodDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/CTMBOMJobMethodDto'
        '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/Job/GetAllJobs/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/JOB
      summary: Returns a list of all BOM jobs with pagination
      operationId: BOMJob_GetAllJobAsync
      parameters:
      - name: pageSize
        in: path
        description: The number of items to include in each page. Default is 1000.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      - name: pageNumber
        in: path
        description: The page number to retrieve. Default is 0.
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobDto'
        '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/Job/GetJob/{jobId}:
    get:
      tags:
      - BOM/JOB
      summary: Returns a specific BOM job based on the provided job ID
      operationId: BOMJob_GetJobAsync
      parameters:
      - name: jobId
        in: path
        description: The unique identifier of the job to retrieve.
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMJobDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMJobDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMJobDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMJobDto'
        '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/Job/PostJob:
    post:
      tags:
      - BOM/JOB
      summary: Posts a new BOM job
      operationId: BOMJob_PostJobAsync
      requestBody:
        description: The BOM job data to be posted.
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/CTMJobDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/CTMJobDto'
          text/json:
            schema:
              $ref: '#/components/schemas/CTMJobDto'
          application/json:
            schema:
              $ref: '#/components/schemas/CTMJobDto'
        required: true
        x-bodyName: job
      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/Job/UpdateSchedulingDetails/{jobId}:
    post:
      tags:
      - BOM/JOB
      summary: Updates the scheduling details for a specific job
      operationId: BOMJob_UpdateSchedulingDetailsAsync
      parameters:
      - name: jobId
        in: path
        description: The ID of the job to be patched.
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        description: The job data transfer object containing the details of the job to be patched.
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/APSJobDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/APSJobDto'
          text/json:
            schema:
              $ref: '#/components/schemas/APSJobDto'
          application/json:
            schema:
              $ref: '#/components/schemas/APSJobDto'
        required: true
        x-bodyName: job
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/APSResponseMessageDto_CTMAPSJobDto'
            application/json:
              schema:
                $ref: '#/components/schemas/APSResponseMessageDto_CTMAPSJobDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/APSResponseMessageDto_CTMAPSJobDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/APSResponseMessageDto_CTMAPSJobDto'
        '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:
                $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'
        '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/Job/GetJobAssembly/{jobId}/{jobAssemblyId}:
    get:
      tags:
      - BOM/JOB
      summary: Returns job assembly details for a given job and assembly id
      operationId: BOMJobAssemblies_GetJobAssemblyAsync
      parameters:
      - name: jobId
        in: path
        description: The job id as string
        required: true
        style: simple
        schema:
          type: string
      - name: jobAssemblyId
        in: path
        description: The job assembly id as integer
        required: true
        style: simple
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
        '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/Job/GetJobAssemblies/{jobId}:
    get:
      tags:
      - BOM/JOB
      summary: Returns JobAssembly for a given JobAssembly id
      description: This endpoint retrieves a JobAssembly based on its identifier.
      operationId: BOMJobAssemblies_GetJobAssemblyAsync
      parameters:
      - name: jobId
        in: path
        description: The Job id as a string
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/json:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
            application/json:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
            application/xml:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
            text/xml:
              schema:
                $ref: '#/components/schemas/BOMJobAssemblyDto'
        '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/Job/GetAllJobAssemblies/{pageSize}/{pageNumber}:
    get:
      tags:
      - BOM/JOB
      summary: Returns all existing JobAssemblies with pagination
      operationId: BOMJobAssemblies_GetAllJobAssemblyAsync
      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/BOMJobAssemblyDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobAssemblyDto'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobAssemblyDto'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BOMJobAssemblyDto'
        '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/Job/PostJobAssembly:
    post:
      tags:
      - BOM/JOB
      summary: Creates a job assembly based on input parameter
      operationId: BOMJobAssemblies_PostJobAssemblyAsync
      requestBody:
        description: The jobassembly as BOMJobAssemblyDto
        content:
          text/xml:
            schema:
              $ref: '#/components/schemas/BOMJobAssemblyDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/BOMJobAssemblyDto'
          text/json:
            schema:
              $ref: '#/components/schemas/BOMJobAssemblyDto'
          application/json:
            schema:
              $ref: '#/components/schemas/BOMJobAssemblyDto'
        required: true
        x-bodyName: jobAssembly
      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/Job/DeleteJobAssembly/{jobId}/{jobAssemblyId}:
    delete:
      tags:
      - BOM/JOB

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