Katana PriceListCustomerController API
The PriceListCustomerController API from Katana — 2 operation(s) for pricelistcustomercontroller.
The PriceListCustomerController API from Katana — 2 operation(s) for pricelistcustomercontroller.
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-pricelistcustomercontroller-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 Price List Customer Controller API
version: 0.0.1
description: public api
contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: PriceListCustomerController
paths:
/price_list_customers/{id}:
patch:
x-controller-name: PriceListCustomerController
x-operation-name: updateById
tags:
- PriceListCustomerController
responses:
'200':
description: Return value of PriceListCustomerController.updateById
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePriceListCustomerDto'
required: true
x-parameter-index: 1
operationId: PriceListCustomerController.updateById
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
summary: Price list customer controller update by id
x-summary-source: derived
get:
x-controller-name: PriceListCustomerController
x-operation-name: findById
tags:
- PriceListCustomerController
responses:
'200':
description: Return value of PriceListCustomerController.findById
operationId: PriceListCustomerController.findById
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
summary: Price list customer controller find by id
x-summary-source: derived
delete:
x-controller-name: PriceListCustomerController
x-operation-name: deleteById
tags:
- PriceListCustomerController
responses:
'204':
description: Price list customer delete success
operationId: PriceListCustomerController.deleteById
parameters:
- name: id
in: path
schema:
type: number
required: true
summary: Price list customer controller delete by id
x-summary-source: derived
/price_list_customers:
post:
x-controller-name: PriceListCustomerController
x-operation-name: create
tags:
- PriceListCustomerController
responses:
'200':
description: Return value of PriceListCustomerController.create
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatePriceListCustomersDto'
required: true
operationId: PriceListCustomerController.create
summary: Price list customer controller create
x-summary-source: derived
get:
x-controller-name: PriceListCustomerController
x-operation-name: findAndPaginate
tags:
- PriceListCustomerController
responses:
'200':
description: Return value of PriceListCustomerController.findAndPaginate
operationId: PriceListCustomerController.findAndPaginate
parameters:
- name: ids
in: query
schema:
type: array
items:
type: integer
- name: customer_ids
in: query
schema:
type: array
items:
type: integer
- name: price_list_ids
in: query
schema:
type: array
items:
type: integer
- name: pagination
in: query
content:
application/json:
schema:
type: object
additionalProperties: true
summary: Price list customer controller find and paginate
x-summary-source: derived
components:
schemas:
CreatePriceListCustomersDto:
title: CreatePriceListCustomersDto
type: object
properties:
price_list_id:
type: number
price_list_customers:
type: array
items:
title: CreatePriceListCustomerDto
type: object
properties:
customer_id:
type: number
required:
- customer_id
additionalProperties: false
required:
- price_list_id
- price_list_customers
additionalProperties: false
UpdatePriceListCustomerDto:
title: UpdatePriceListCustomerDto
type: object
properties:
customer_id:
type: number
required:
- customer_id
additionalProperties: false