Katana PriceListCustomerController API

The PriceListCustomerController API from Katana — 2 operation(s) for pricelistcustomercontroller.

Business capability
Price List Management BC-440.20

Operations 5

PATCH /price_list_customers/{id} #
GET /price_list_customers/{id} #
DELETE /price_list_customers/{id} #
POST /price_list_customers #
GET /price_list_customers #

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-pricelistcustomercontroller-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-pricelistcustomercontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController 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
    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
    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
  /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
    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
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