Katana BinTransferController API

The BinTransferController API from Katana — 3 operation(s) for bintransfercontroller.

Operations 6

PATCH /bin_transfers/{id}/status #
PATCH /bin_transfers/{id} #
GET /bin_transfers/{id} #
DELETE /bin_transfers/{id} #
POST /bin_transfers #
GET /bin_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-bintransfercontroller-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-bintransfercontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Bin Transfer Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: BinTransferController
paths:
  /bin_transfers/{id}/status:
    patch:
      x-controller-name: BinTransferController
      x-operation-name: updateStatus
      tags:
      - BinTransferController
      responses:
        '200':
          description: Return value of BinTransferController.updateStatus
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBinTransferStatusDto'
        required: true
        x-parameter-index: 1
      operationId: BinTransferController.updateStatus
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
  /bin_transfers/{id}:
    patch:
      x-controller-name: BinTransferController
      x-operation-name: updateById
      tags:
      - BinTransferController
      responses:
        '200':
          description: Return value of BinTransferController.updateById
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBinTransferDto'
        required: true
        x-parameter-index: 1
      operationId: BinTransferController.updateById
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
    get:
      x-controller-name: BinTransferController
      x-operation-name: findById
      tags:
      - BinTransferController
      responses:
        '200':
          description: Return value of BinTransferController.findById
      operationId: BinTransferController.findById
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
    delete:
      x-controller-name: BinTransferController
      x-operation-name: deleteById
      tags:
      - BinTransferController
      responses:
        '200':
          description: Return value of BinTransferController.deleteById
      operationId: BinTransferController.deleteById
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
  /bin_transfers:
    post:
      x-controller-name: BinTransferController
      x-operation-name: create
      tags:
      - BinTransferController
      responses:
        '200':
          description: Return value of BinTransferController.create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBinTransferDto'
        required: true
      operationId: BinTransferController.create
    get:
      x-controller-name: BinTransferController
      x-operation-name: findAndPaginate
      tags:
      - BinTransferController
      responses:
        '200':
          description: Return value of BinTransferController.findAndPaginate
      operationId: BinTransferController.findAndPaginate
      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: bin_transfer_number
        in: query
        schema:
          type: string
      - name: location_id
        in: query
        schema:
          type: integer
          format: int32
      - name: status
        in: query
        schema:
          enum:
          - CREATED
          - IN_TRANSIT
          - DONE
          type: string
      - name: include_deleted
        in: query
        schema:
          type: boolean
components:
  schemas:
    TraceabilityInputDto:
      title: TraceabilityInputDto
      type: object
      properties:
        batch_id:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 2147483647
        serial_number_id:
          type:
          - number
          - 'null'
          minimum: 0
          maximum: 2147483647
        quantity:
          allOf:
          - anyOf:
            - type: number
              minimum: 0
            - type: string
              pattern: ^[0-9]+?\.?[0-9]*$
          - anyOf:
            - type: number
              not:
                const: 0
            - type: string
              not:
                pattern: ^(-|)[0]+?\.?[0]*$
      additionalProperties: false
    CreateBinTransferDto:
      title: CreateBinTransferDto
      type: object
      properties:
        bin_transfer_number:
          type: string
          minLength: 1
          maxLength: 255
        location_id:
          type: integer
          minimum: 0
          maximum: 2147483647
        created_date:
          type:
          - string
          - 'null'
          format: date-time
        additional_info:
          type:
          - string
          - 'null'
          minLength: 0
        bin_transfer_rows:
          type: array
          maxItems: 250
          items:
            title: CreateNestedBinTransferRowDto
            type: object
            properties:
              variant_id:
                type: integer
                minimum: 0
                maximum: 2147483647
              quantity:
                allOf:
                - anyOf:
                  - type: number
                    minimum: 0
                  - type: string
                    pattern: ^[0-9]+?\.?[0-9]*$
                - anyOf:
                  - type: number
                    not:
                      const: 0
                  - type: string
                    not:
                      pattern: ^(-|)[0]+?\.?[0]*$
              source_bin_location_id:
                type:
                - number
                - 'null'
                minimum: 0
                maximum: 2147483647
              target_bin_location_id:
                type:
                - number
                - 'null'
                minimum: 0
                maximum: 2147483647
              traceability:
                type: array
                items:
                  $ref: '#/components/schemas/TraceabilityInputDto'
            required:
            - variant_id
            - quantity
            definitions:
              TraceabilityInputDto:
                title: TraceabilityInputDto
                type: object
                properties:
                  batch_id:
                    type:
                    - number
                    - 'null'
                    minimum: 0
                    maximum: 2147483647
                  serial_number_id:
                    type:
                    - number
                    - 'null'
                    minimum: 0
                    maximum: 2147483647
                  quantity:
                    allOf:
                    - anyOf:
                      - type: number
                        minimum: 0
                      - type: string
                        pattern: ^[0-9]+?\.?[0-9]*$
                    - anyOf:
                      - type: number
                        not:
                          const: 0
                      - type: string
                        not:
                          pattern: ^(-|)[0]+?\.?[0]*$
                additionalProperties: false
            additionalProperties: false
      required:
      - location_id
      additionalProperties: false
    UpdateBinTransferStatusDto:
      title: UpdateBinTransferStatusDto
      type: object
      properties:
        status:
          type: string
          enum:
          - CREATED
          - IN_TRANSIT
          - DONE
      required:
      - status
      additionalProperties: false
    UpdateBinTransferDto:
      title: UpdateBinTransferDto
      type: object
      properties:
        bin_transfer_number:
          type: string
          minLength: 1
          maxLength: 255
        location_id:
          type: integer
          minimum: 0
          maximum: 2147483647
        created_date:
          type:
          - string
          - 'null'
          format: date-time
        departed_at:
          type:
          - string
          - 'null'
          format: date-time
        arrived_at:
          type:
          - string
          - 'null'
          format: date-time
        additional_info:
          type:
          - string
          - 'null'
          minLength: 0
      additionalProperties: false