Katana CustomFieldDefinitionController API

The CustomFieldDefinitionController API from Katana — 2 operation(s) for customfielddefinitioncontroller.

Operations 5

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

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-customfielddefinitioncontroller-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-customfielddefinitioncontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Custom Field Definition Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: CustomFieldDefinitionController
paths:
  /custom_field_definitions/{id}:
    patch:
      x-controller-name: CustomFieldDefinitionController
      x-operation-name: update
      tags:
      - CustomFieldDefinitionController
      responses:
        '200':
          description: Return value of CustomFieldDefinitionController.update
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomFieldDefinitionDto'
        required: true
        x-parameter-index: 1
      operationId: CustomFieldDefinitionController.update
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
    get:
      x-controller-name: CustomFieldDefinitionController
      x-operation-name: getById
      tags:
      - CustomFieldDefinitionController
      responses:
        '200':
          description: Return value of CustomFieldDefinitionController.getById
      operationId: CustomFieldDefinitionController.getById
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
    delete:
      x-controller-name: CustomFieldDefinitionController
      x-operation-name: deleteById
      tags:
      - CustomFieldDefinitionController
      responses:
        '200':
          description: Return value of CustomFieldDefinitionController.deleteById
      operationId: CustomFieldDefinitionController.deleteById
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
  /custom_field_definitions:
    post:
      x-controller-name: CustomFieldDefinitionController
      x-operation-name: create
      tags:
      - CustomFieldDefinitionController
      responses:
        '200':
          description: Return value of CustomFieldDefinitionController.create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomFieldDefinitionDto'
        required: true
      operationId: CustomFieldDefinitionController.create
    get:
      x-controller-name: CustomFieldDefinitionController
      x-operation-name: getAll
      tags:
      - CustomFieldDefinitionController
      responses:
        '200':
          description: Return value of CustomFieldDefinitionController.getAll
      operationId: CustomFieldDefinitionController.getAll
      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: label
        in: query
        schema:
          type: string
      - name: field_type
        in: query
        schema:
          type: string
      - name: entity_type
        in: query
        schema:
          type: string
components:
  schemas:
    CreateCustomFieldDefinitionDto:
      title: CreateCustomFieldDefinitionDto
      type: object
      properties:
        label:
          type: string
          maxLength: 255
        field_type:
          type: string
          maxLength: 50
        entity_type:
          type: string
          maxLength: 50
        source:
          type: string
          maxLength: 255
        description:
          type:
          - string
          - 'null'
        options:
          type:
          - object
          - 'null'
      required:
      - label
      - field_type
      - entity_type
      - source
      additionalProperties: false
    UpdateCustomFieldDefinitionDto:
      title: UpdateCustomFieldDefinitionDto
      type: object
      properties:
        label:
          type: string
          maxLength: 255
        description:
          type:
          - string
          - 'null'
        options:
          type:
          - object
          - 'null'
      additionalProperties: false