Katana SupplierController API
The SupplierController API from Katana — 2 operation(s) for suppliercontroller.
The SupplierController API from Katana — 2 operation(s) for suppliercontroller.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/katana-suppliercontroller-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
openapi: 3.2.0
info:
title: katana-api-gateway AdditionalCostController Supplier Controller API
version: 0.0.1
description: public api
contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: SupplierController
paths:
/suppliers/{id}:
patch:
x-controller-name: SupplierController
x-operation-name: updateSupplier
tags:
- SupplierController
responses:
'200':
description: Return value of SupplierController.updateSupplier
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SupplierUpdateDto'
required: true
x-parameter-index: 1
operationId: SupplierController.updateSupplier
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
delete:
x-controller-name: SupplierController
x-operation-name: deleteSupplier
tags:
- SupplierController
responses:
'200':
description: Return value of SupplierController.deleteSupplier
operationId: SupplierController.deleteSupplier
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
/suppliers:
post:
x-controller-name: SupplierController
x-operation-name: createSupplier
tags:
- SupplierController
responses:
'200':
description: Return value of SupplierController.createSupplier
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SupplierCreateDto'
required: true
operationId: SupplierController.createSupplier
get:
x-controller-name: SupplierController
x-operation-name: getAllSuppliers
tags:
- SupplierController
responses:
'200':
description: Return value of SupplierController.getAllSuppliers
operationId: SupplierController.getAllSuppliers
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: email
in: query
schema:
type: string
- name: phone
in: query
schema:
type: string
- name: name
in: query
schema:
type: string
- name: include_deleted
in: query
schema:
type: boolean
components:
schemas:
SupplierUpdateDto:
title: SupplierUpdateDto
type: object
properties:
name:
type: string
minLength: 1
email:
type:
- string
- 'null'
minLength: 1
phone:
type:
- string
- 'null'
minLength: 1
maxLength: 30
comment:
type:
- string
- 'null'
minLength: 1
currency:
type: string
minLength: 1
additionalProperties: false
SupplierCreateDto:
title: SupplierCreateDto
type: object
properties:
name:
type: string
minLength: 1
email:
type:
- string
- 'null'
minLength: 1
phone:
type:
- string
- 'null'
minLength: 1
maxLength: 30
comment:
type:
- string
- 'null'
minLength: 1
currency:
type: string
minLength: 1
addresses:
type: array
items:
title: SupplierAddressNestedCreateDto
type: object
properties:
line_1:
type:
- string
- 'null'
line_2:
type:
- string
- 'null'
city:
type:
- string
- 'null'
state:
type:
- string
- 'null'
zip:
type:
- string
- 'null'
country:
type:
- string
- 'null'
additionalProperties: false
required:
- name
additionalProperties: false