Katana BomRowController API

The BomRowController API from Katana — 3 operation(s) for bomrowcontroller.

Business capability
Product Specification Management BC-820.30

Operations 5

POST /bom_rows/batch/create #
PATCH /bom_rows/{id} #
DELETE /bom_rows/{id} #
POST /bom_rows #
GET /bom_rows #

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/katana-bomrowcontroller-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

katana-bomrowcontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Bom Row Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: BomRowController
paths:
  /bom_rows/batch/create:
    post:
      x-controller-name: BomRowController
      x-operation-name: createBomRowsBatch
      tags:
      - BomRowController
      responses:
        '200':
          description: Return value of BomRowController.createBomRowsBatch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBomRowsBatchDto'
        required: true
      operationId: BomRowController.createBomRowsBatch
  /bom_rows/{id}:
    patch:
      x-controller-name: BomRowController
      x-operation-name: updateBomRow
      tags:
      - BomRowController
      responses:
        '200':
          description: Return value of BomRowController.updateBomRow
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BomRowUpdateDto'
        required: true
        x-parameter-index: 1
      operationId: BomRowController.updateBomRow
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
    delete:
      x-controller-name: BomRowController
      x-operation-name: deleteBomRow
      tags:
      - BomRowController
      responses:
        '200':
          description: Return value of BomRowController.deleteBomRow
      operationId: BomRowController.deleteBomRow
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
  /bom_rows:
    post:
      x-controller-name: BomRowController
      x-operation-name: createBomRow
      tags:
      - BomRowController
      responses:
        '200':
          description: Return value of BomRowController.createBomRow
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BomRowCreateDto'
        required: true
      operationId: BomRowController.createBomRow
    get:
      x-controller-name: BomRowController
      x-operation-name: getBomRows
      tags:
      - BomRowController
      responses:
        '200':
          description: Return value of BomRowController.getBomRows
      operationId: BomRowController.getBomRows
      parameters:
      - name: pagination
        in: query
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      - name: dateFilter
        in: query
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      - name: id
        in: query
        schema:
          type: string
      - name: product_variant_id
        in: query
        schema:
          type: integer
          format: int32
      - name: product_item_id
        in: query
        schema:
          type: integer
          format: int32
      - name: ingredient_variant_id
        in: query
        schema:
          type: integer
          format: int32
components:
  schemas:
    BomRowCreateDto:
      title: BomRowCreateDto
      type: object
      properties:
        product_item_id:
          type: integer
          minimum: 1
          maximum: 2147483647
        product_variant_id:
          type: integer
          minimum: 1
          maximum: 2147483647
        ingredient_variant_id:
          type: integer
          minimum: 1
          maximum: 2147483647
        quantity:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 100000000000000000
        notes:
          type:
          - string
          - 'null'
          maxLength: 255
      required:
      - product_item_id
      - product_variant_id
      - ingredient_variant_id
      additionalProperties: false
    CreateBomRowsBatchDto:
      title: CreateBomRowsBatchDto
      type: object
      properties:
        data:
          type: array
          minItems: 1
          maxItems: 250
          items:
            $ref: '#/components/schemas/BomRowCreateDto'
            definitions:
              BomRowCreateDto:
                title: BomRowCreateDto
                type: object
                properties:
                  product_item_id:
                    type: integer
                    minimum: 1
                    maximum: 2147483647
                  product_variant_id:
                    type: integer
                    minimum: 1
                    maximum: 2147483647
                  ingredient_variant_id:
                    type: integer
                    minimum: 1
                    maximum: 2147483647
                  quantity:
                    type:
                    - number
                    - 'null'
                    minimum: 0
                    maximum: 100000000000000000
                  notes:
                    type:
                    - string
                    - 'null'
                    maxLength: 255
                required:
                - product_item_id
                - product_variant_id
                - ingredient_variant_id
                additionalProperties: false
      required:
      - data
      additionalProperties: false
    BomRowUpdateDto:
      title: BomRowUpdateDto
      type: object
      properties:
        ingredient_variant_id:
          type: integer
          minimum: 1
          maximum: 2147483647
        quantity:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 100000000000000000
        notes:
          type:
          - string
          - 'null'
          maxLength: 255
      additionalProperties: false