Katana StockTransferController API

The StockTransferController API from Katana — 3 operation(s) for stocktransfercontroller.

Business capability
Inventory Management BC-530

Operations 5

PATCH /stock_transfers/{id}/status #
PATCH /stock_transfers/{id} #
DELETE /stock_transfers/{id} #
POST /stock_transfers #
GET /stock_transfers #

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-stocktransfercontroller-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-stocktransfercontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Stock Transfer Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: StockTransferController
paths:
  /stock_transfers/{id}/status:
    patch:
      x-controller-name: StockTransferController
      x-operation-name: updateStockTransferStatus
      tags:
      - StockTransferController
      responses:
        '200':
          description: Return value of StockTransferController.updateStockTransferStatus
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateStockTransferStatusDto'
        required: true
        x-parameter-index: 1
      operationId: StockTransferController.updateStockTransferStatus
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
  /stock_transfers/{id}:
    patch:
      x-controller-name: StockTransferController
      x-operation-name: updateStockTransfer
      tags:
      - StockTransferController
      responses:
        '200':
          description: Return value of StockTransferController.updateStockTransfer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateStockTransferDto'
        required: true
        x-parameter-index: 1
      operationId: StockTransferController.updateStockTransfer
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
    delete:
      x-controller-name: StockTransferController
      x-operation-name: deleteStockTransfer
      tags:
      - StockTransferController
      responses:
        '200':
          description: Return value of StockTransferController.deleteStockTransfer
      operationId: StockTransferController.deleteStockTransfer
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
  /stock_transfers:
    post:
      x-controller-name: StockTransferController
      x-operation-name: createStockTransfer
      tags:
      - StockTransferController
      responses:
        '200':
          description: Return value of StockTransferController.createStockTransfer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateStockTransferDto'
        required: true
      operationId: StockTransferController.createStockTransfer
    get:
      x-controller-name: StockTransferController
      x-operation-name: findStockTransfers
      tags:
      - StockTransferController
      responses:
        '200':
          description: Return value of StockTransferController.findStockTransfers
      operationId: StockTransferController.findStockTransfers
      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: ids
        in: query
        schema:
          type: array
          items:
            type: integer
            maximum: 2147483647
      - name: stock_transfer_number
        in: query
        schema:
          type: string
      - name: source_location_id
        in: query
        schema:
          type: integer
          format: int32
      - name: target_location_id
        in: query
        schema:
          type: integer
          format: int32
      - name: include_deleted
        in: query
        schema:
          type: boolean
components:
  schemas:
    UpdateStockTransferStatusDto:
      title: UpdateStockTransferStatusDto
      type: object
      properties:
        status:
          type: string
          enum:
          - draft
          - received
          - inTransit
      additionalProperties: false
    UpdateStockTransferDto:
      title: UpdateStockTransferDto
      type: object
      properties:
        stock_transfer_number:
          type: string
        transfer_date:
          type: string
        order_created_date:
          type:
          - string
          - 'null'
        expected_arrival_date:
          type:
          - string
          - 'null'
        additional_info:
          type:
          - string
          - 'null'
      additionalProperties: false
    CreateStockTransferRowDto:
      title: CreateStockTransferRowDto
      type: object
      properties:
        quantity:
          type: string
          maximum: 100000000000000000
        variant_id:
          type: integer
          maximum: 2147483647
        batch_transactions:
          type: array
          items:
            type: object
        traceability:
          type: array
          items:
            $ref: '#/components/schemas/TraceabilityInputItemDto'
      required:
      - quantity
      - variant_id
      additionalProperties: false
    CreateStockTransferDto:
      title: CreateStockTransferDto
      type: object
      properties:
        stock_transfer_number:
          type: string
        source_location_id:
          type: integer
          maximum: 2147483647
        target_location_id:
          type: integer
          maximum: 2147483647
        transfer_date:
          type: string
        order_created_date:
          type:
          - string
          - 'null'
        expected_arrival_date:
          type:
          - string
          - 'null'
        additional_info:
          type:
          - string
          - 'null'
        stock_transfer_rows:
          type: array
          items:
            $ref: '#/components/schemas/CreateStockTransferRowDto'
      required:
      - stock_transfer_number
      - source_location_id
      - target_location_id
      - stock_transfer_rows
      additionalProperties: false
    TraceabilityInputItemDto:
      title: TraceabilityInputItemDto
      type: object
      properties:
        batch_id:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 2147483647
        serial_number_id:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 2147483647
        bin_location_id:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 2147483647
        quantity:
          allOf:
          - anyOf:
            - type: number
            - type: string
              pattern: ^(-|)[0-9]+?\.?[0-9]*$
          - anyOf:
            - type: number
              not:
                const: 0
            - type: string
              not:
                pattern: ^(-|)[0]+?\.?[0]*$
      additionalProperties: false