ECI Solutions Issuing Materials API

The Issuing Materials API from ECI Solutions — 4 operation(s) for issuing materials.

Operations 4

GET /api/v1/issuing-materials/bin-locations Gets a list of parts with bin locations and quantity on hand #
GET /api/v1/issuing-materials/job-numbers Gets a list of job numbers #
GET /api/v1/issuing-materials/routing-steps Gets a list of routing steps for jobs #
POST /api/v1/issuing-materials/stock-to-job-transfer Transfer stock materials to a job #

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-issuing-materials-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-issuing-materials-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: JobBOSS² Public Issuing Materials API
  description: Provides a common API surface for accessing ECI ERP JobBOSS².
  version: v1
servers:
- url: https://api-jb2.integrations.ecimanufacturing.com:443
  description: API Host
security:
- Bearer: []
tags:
- name: Issuing Materials
paths:
  /api/v1/issuing-materials/bin-locations:
    get:
      tags:
      - Issuing Materials
      summary: Gets a list of parts with bin locations and quantity on hand
      description: Returns inventory bin location records including part number, bin location, quantity on hand, cost, and related fields. Use the fields, sort, filter, skip, and take query parameters for customization. Filter by partNumber to get bin locations for a specific part.
      parameters:
      - name: fields
        in: query
        description: A comma separated list of fields to include in the result.
        schema:
          type: string
      - name: sort
        in: query
        description: A comma separated list of fields to sort by.
        schema:
          type: string
      - name: filters
        in: query
        description: Filters must be provided as query string parameters as defined in the Filter Expression section.
        schema:
          type: object
          additionalProperties:
            type: string
        examples:
          No filters: {}
          Filter by Part Number:
            value:
              partNumber: PART001
      - name: skip
        in: query
        description: The number of records at the start of the result set to skip over.
        schema:
          type: string
      - name: take
        in: query
        description: The number of records to retrieve.
        schema:
          type: string
      responses:
        '200':
          description: Success
      operationId: getApiV1IssuingMaterialsBinLocations
      x-operation-id-source: derived
  /api/v1/issuing-materials/job-numbers:
    get:
      tags:
      - Issuing Materials
      summary: Gets a list of job numbers
      description: 'Returns job numbers from order line items with standard fields and filtering. By default returns: jobNumber, partNumber, partDescription, status, dueDate, orderNumber. Use the fields, sort, filter, skip, and take query parameters for customization.'
      parameters:
      - name: fields
        in: query
        description: A comma separated list of fields to include in the result.
        schema:
          type: string
      - name: sort
        in: query
        description: A comma separated list of fields to sort by.
        schema:
          type: string
      - name: filters
        in: query
        description: Filters must be provided as query string parameters as defined in the Filter Expression section.
        schema:
          type: object
          additionalProperties:
            type: string
        examples:
          No filters: {}
          Filter by Status:
            value:
              status: Open
      - name: skip
        in: query
        description: The number of records at the start of the result set to skip over.
        schema:
          type: string
      - name: take
        in: query
        description: The number of records to retrieve.
        schema:
          type: string
      responses:
        '200':
          description: Success
      operationId: getApiV1IssuingMaterialsJobNumbers
      x-operation-id-source: derived
  /api/v1/issuing-materials/routing-steps:
    get:
      tags:
      - Issuing Materials
      summary: Gets a list of routing steps for jobs
      description: 'Returns routing steps from order routing records with standard fields and filtering. By default returns: jobNumber, stepNumber, operationCode, description, workCenter, status. Use the fields, sort, filter, skip, and take query parameters for customization. Filter by jobNumber to get routing steps for a specific job.'
      parameters:
      - name: fields
        in: query
        description: A comma separated list of fields to include in the result.
        schema:
          type: string
      - name: sort
        in: query
        description: A comma separated list of fields to sort by.
        schema:
          type: string
      - name: filters
        in: query
        description: Filters must be provided as query string parameters as defined in the Filter Expression section.
        schema:
          type: object
          additionalProperties:
            type: string
        examples:
          No filters: {}
          Filter by Job Number:
            value:
              jobNumber: 1234-1
      - name: skip
        in: query
        description: The number of records at the start of the result set to skip over.
        schema:
          type: string
      - name: take
        in: query
        description: The number of records to retrieve.
        schema:
          type: string
      responses:
        '200':
          description: Success
      operationId: getApiV1IssuingMaterialsRoutingSteps
      x-operation-id-source: derived
  /api/v1/issuing-materials/stock-to-job-transfer:
    post:
      tags:
      - Issuing Materials
      summary: Transfer stock materials to a job
      description: Transfers inventory from stock bin locations to a specified job. Creates JobMaterial records, adjusts bin quantities, logs inventory transactions, and recreates JobReq records for any remaining unfulfilled quantities. Set allowClosedJobs to true to allow transfers to closed jobs.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StockToJobTransferCreate'
            example:
              jobNumber: string
              postingEffectiveDate: '2026-03-17'
              allowClosedJobs: false
              materials:
              - partNumber: string
                quantityToMake: 0
                stepNo: 0
                bins:
                - binLocationId: 0
                  binLocation: string
                  qty2Use: 0
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StockToJobTransferResultSuccessResponse'
              example:
                Data:
                  jobNumber: string
                  materials:
                  - partNumber: string
                    quantityRequested: 0
                    quantityTransferred: 0
                    quantityCapped: 0
                    quantityRemainingToBuy: 0
                  warnings: []
      operationId: postApiV1IssuingMaterialsStockToJobTransfer
      x-operation-id-source: derived
components:
  schemas:
    StockToJobTransferResult:
      type: object
      properties:
        jobNumber:
          type:
          - string
          - 'null'
        materials:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/StockToJobMaterialResultSchema'
        warnings:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    StockToJobMaterialResultSchema:
      type: object
      properties:
        partNumber:
          type:
          - string
          - 'null'
        quantityRequested:
          type: number
          format: double
        quantityTransferred:
          type: number
          format: double
        quantityCapped:
          type: number
          format: double
        quantityRemainingToBuy:
          type: number
          format: double
      additionalProperties: false
    StockToJobBinCreate:
      required:
      - qty2Use
      type: object
      properties:
        binLocationId:
          type: integer
          format: int32
        binLocation:
          type:
          - string
          - 'null'
        qty2Use:
          type: integer
          format: int32
      additionalProperties: false
    StockToJobMaterialCreate:
      required:
      - bins
      - partNumber
      - quantityToMake
      type: object
      properties:
        partNumber:
          type: string
        quantityToMake:
          type: number
          format: double
        stepNo:
          type:
          - number
          - 'null'
          format: double
        bins:
          type: array
          items:
            $ref: '#/components/schemas/StockToJobBinCreate'
      additionalProperties: false
    StockToJobTransferCreate:
      required:
      - jobNumber
      - materials
      - postingEffectiveDate
      type: object
      properties:
        jobNumber:
          type: string
        postingEffectiveDate:
          type: string
        allowClosedJobs:
          type: boolean
        materials:
          type: array
          items:
            $ref: '#/components/schemas/StockToJobMaterialCreate'
      additionalProperties: false
    StockToJobTransferResultSuccessResponse:
      type: object
      properties:
        Data:
          $ref: '#/components/schemas/StockToJobTransferResult'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: oauth2
      description: OAuth 2.0 Client Credentials Flow with API Users issued from Integration Engine Management Console
      flows:
        clientCredentials:
          tokenUrl: https://api-user.integrations.ecimanufacturing.com/oauth2/api-user/token
          scopes:
            openid: openid