Katana CustomerAddressController API

The CustomerAddressController API from Katana — 2 operation(s) for customeraddresscontroller.

Business capability
Customer Data Management BC-420.10

Operations 4

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

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-customeraddresscontroller-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-customeraddresscontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Customer Address Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: CustomerAddressController
paths:
  /customer_addresses/{id}:
    patch:
      x-controller-name: CustomerAddressController
      x-operation-name: updateCustomerAddress
      tags:
      - CustomerAddressController
      responses:
        '200':
          description: Return value of CustomerAddressController.updateCustomerAddress
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerAddressUpdateDto'
        required: true
        x-parameter-index: 1
      operationId: CustomerAddressController.updateCustomerAddress
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
    delete:
      x-controller-name: CustomerAddressController
      x-operation-name: deleteCustomerAddress
      tags:
      - CustomerAddressController
      responses:
        '200':
          description: Return value of CustomerAddressController.deleteCustomerAddress
      operationId: CustomerAddressController.deleteCustomerAddress
      parameters:
      - name: id
        in: path
        schema:
          type: integer
          format: int32
        required: true
  /customer_addresses:
    post:
      x-controller-name: CustomerAddressController
      x-operation-name: createCustomerAddress
      tags:
      - CustomerAddressController
      responses:
        '200':
          description: Return value of CustomerAddressController.createCustomerAddress
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerAddressCreateDto'
        required: true
      operationId: CustomerAddressController.createCustomerAddress
    get:
      x-controller-name: CustomerAddressController
      x-operation-name: getAllCustomerAddresses
      tags:
      - CustomerAddressController
      responses:
        '200':
          description: Return value of CustomerAddressController.getAllCustomerAddresses
      operationId: CustomerAddressController.getAllCustomerAddresses
      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: customer_ids
        in: query
        schema:
          type: array
          items:
            type: integer
            maximum: 2147483647
      - name: entity_type
        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: line_1
        in: query
        schema:
          type: string
      - name: line_2
        in: query
        schema:
          type: string
      - name: city
        in: query
        schema:
          type: string
      - name: state
        in: query
        schema:
          type: string
      - name: zip
        in: query
        schema:
          type: string
      - name: country
        in: query
        schema:
          type: string
      - name: phone
        in: query
        schema:
          type: string
      - name: include_deleted
        in: query
        schema:
          type: boolean
components:
  schemas:
    CustomerAddressUpdateDto:
      title: CustomerAddressUpdateDto
      type: object
      properties:
        first_name:
          type:
          - string
          - 'null'
          minLength: 1
        last_name:
          type:
          - string
          - 'null'
          minLength: 1
        company:
          type:
          - string
          - 'null'
          minLength: 1
        phone:
          type:
          - string
          - 'null'
          minLength: 1
        line_1:
          type:
          - string
          - 'null'
          minLength: 1
        line_2:
          type:
          - string
          - 'null'
          minLength: 1
        city:
          type:
          - string
          - 'null'
          minLength: 1
        state:
          type:
          - string
          - 'null'
          minLength: 1
        zip:
          type:
          - string
          - 'null'
          minLength: 1
        country:
          type:
          - string
          - 'null'
          minLength: 1
      additionalProperties: false
    CustomerAddressCreateDto:
      title: CustomerAddressCreateDto
      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'
        customer_id:
          type: integer
          maximum: 2147483647
          minimum: 1
      required:
      - entity_type
      - customer_id
      additionalProperties: false