Katana CustomerController API
The CustomerController API from Katana — 2 operation(s) for customercontroller.
The CustomerController API from Katana — 2 operation(s) for customercontroller.
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-customercontroller-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: katana-api-gateway AdditionalCostController Customer Controller API
version: 0.0.1
description: public api
contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: CustomerController
paths:
/customers/{id}:
patch:
x-controller-name: CustomerController
x-operation-name: updateVariant
tags:
- CustomerController
responses:
'200':
description: Return value of CustomerController.updateVariant
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUpdateDto'
required: true
x-parameter-index: 1
operationId: CustomerController.updateVariant
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
delete:
x-controller-name: CustomerController
x-operation-name: deleteCustomer
tags:
- CustomerController
responses:
'200':
description: Return value of CustomerController.deleteCustomer
operationId: CustomerController.deleteCustomer
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
/customers:
post:
x-controller-name: CustomerController
x-operation-name: createCustomer
tags:
- CustomerController
responses:
'200':
description: Return value of CustomerController.createCustomer
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateCustomerDto'
required: true
operationId: CustomerController.createCustomer
get:
x-controller-name: CustomerController
x-operation-name: getAllCustomers
tags:
- CustomerController
responses:
'200':
description: Return value of CustomerController.getAllCustomers
operationId: CustomerController.getAllCustomers
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: name
in: query
schema:
type: string
- name: first_name
in: query
schema:
type: string
- name: last_name
in: query
schema:
type: string
- name: company
in: query
schema:
type: string
- name: email
in: query
schema:
type: string
- name: reference_id
in: query
schema:
type: string
- name: category
in: query
schema:
type: string
- name: currency
in: query
schema:
type: string
- name: phone
in: query
schema:
type: string
- name: include_deleted
in: query
schema:
type: boolean
components:
schemas:
CreateCustomerDto:
title: CreateCustomerDto
type: object
properties:
name:
type: string
minLength: 1
first_name:
type: string
last_name:
type: string
company:
type: string
email:
type: string
reference_id:
type: string
category:
type: string
currency:
type: string
phone:
type: string
comment:
type: string
discount_rate:
type:
- number
- 'null'
minimum: 0
maximum: 100
addresses:
type: array
items:
title: CustomerAddressInCustomerCreateDto
type: object
properties:
entity_type:
type: string
enum:
- billing
- shipping
first_name:
type:
- string
- 'null'
last_name:
type:
- string
- 'null'
company:
type:
- string
- 'null'
phone:
type:
- string
- 'null'
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'
default:
type: boolean
required:
- entity_type
additionalProperties: false
required:
- name
additionalProperties: false
CustomerUpdateDto:
title: CustomerUpdateDto
type: object
properties:
name:
type:
- string
- 'null'
minLength: 1
first_name:
type:
- string
- 'null'
minLength: 1
last_name:
type:
- string
- 'null'
minLength: 1
company:
type:
- string
- 'null'
minLength: 1
email:
type:
- string
- 'null'
minLength: 1
reference_id:
type:
- string
- 'null'
minLength: 1
category:
type:
- string
- 'null'
minLength: 1
currency:
type:
- string
- 'null'
minLength: 1
phone:
type:
- string
- 'null'
minLength: 1
comment:
type:
- string
- 'null'
minLength: 1
default_shipping_id:
type:
- integer
- 'null'
maximum: 2147483647
minimum: 1
discount_rate:
type:
- number
- 'null'
minimum: 0
maximum: 100
additionalProperties: false