Katana SerialNumberController API

The SerialNumberController API from Katana — 2 operation(s) for serialnumbercontroller.

Business capability
Inventory Management BC-530

Operations 4

GET /serial_numbers/serial_numbers_stock #
POST /serial_numbers #
GET /serial_numbers #
DELETE /serial_numbers #

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-serialnumbercontroller-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-serialnumbercontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Serial Number Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: SerialNumberController
paths:
  /serial_numbers/serial_numbers_stock:
    get:
      x-controller-name: SerialNumberController
      x-operation-name: list
      tags:
      - SerialNumberController
      responses:
        '200':
          description: Return value of SerialNumberController.list
      operationId: SerialNumberController.list
      parameters:
      - name: pagination
        in: query
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
  /serial_numbers:
    post:
      x-controller-name: SerialNumberController
      x-operation-name: addSerialNumbersToEntity
      tags:
      - SerialNumberController
      responses:
        '200':
          description: Return value of SerialNumberController.addSerialNumbersToEntity
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddSerialNumbersToEntityDto'
        required: true
      operationId: SerialNumberController.addSerialNumbersToEntity
    get:
      x-controller-name: SerialNumberController
      x-operation-name: find
      tags:
      - SerialNumberController
      responses:
        '200':
          description: Return value of SerialNumberController.find
      operationId: SerialNumberController.find
      parameters:
      - name: pagination
        in: query
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      - name: resource_type
        in: query
        schema:
          enum:
          - ManufacturingOrder
          - SalesOrderRow
          - Production
          - SalesOrderFulfillmentRow
          - StockAdjustmentRow
          - StockTransferRow
          - PurchaseOrderRow
          type: string
      - name: resource_id
        in: query
        schema:
          type: integer
          format: int32
    delete:
      x-controller-name: SerialNumberController
      x-operation-name: deleteFromEntity
      tags:
      - SerialNumberController
      responses:
        '200':
          description: Return value of SerialNumberController.deleteFromEntity
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteSerialNumberDto'
        required: true
      operationId: SerialNumberController.deleteFromEntity
components:
  schemas:
    DeleteSerialNumberDto:
      title: DeleteSerialNumberDto
      type: object
      properties:
        resource_id:
          type: integer
          maximum: 2147483647
          minimum: 1
        resource_type:
          type: string
          enum:
          - ManufacturingOrder
          - SalesOrderRow
          - Production
          - SalesOrderFulfillmentRow
          - StockAdjustmentRow
          - StockTransferRow
          - PurchaseOrderRow
        ids:
          type: array
          items:
            type: number
      required:
      - resource_id
      - resource_type
      - ids
      additionalProperties: false
    AddSerialNumbersToEntityDto:
      title: AddSerialNumbersToEntityDto
      type: object
      properties:
        resource_id:
          type: integer
          maximum: 2147483647
          minimum: 1
        resource_type:
          type: string
          enum:
          - ManufacturingOrder
          - Production
          - StockAdjustmentRow
          - StockTransferRow
          - PurchaseOrderRow
          - SalesOrderRow
        serial_numbers:
          type: array
          items:
            type: string
      required:
      - resource_id
      additionalProperties: false