Katana ServiceController API
The ServiceController API from Katana — 2 operation(s) for servicecontroller.
The ServiceController API from Katana — 2 operation(s) for servicecontroller.
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-servicecontroller-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
openapi: 3.2.0
info:
title: katana-api-gateway AdditionalCostController Service Controller API
version: 0.0.1
description: public api
contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: ServiceController
paths:
/services/{id}:
patch:
x-controller-name: ServiceController
x-operation-name: updateService
tags:
- ServiceController
responses:
'200':
description: Return value of ServiceController.updateService
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateServiceDto'
required: true
x-parameter-index: 1
operationId: ServiceController.updateService
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
get:
x-controller-name: ServiceController
x-operation-name: getService
tags:
- ServiceController
responses:
'200':
description: Return value of ServiceController.getService
operationId: ServiceController.getService
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
delete:
x-controller-name: ServiceController
x-operation-name: deleteService
tags:
- ServiceController
responses:
'200':
description: Return value of ServiceController.deleteService
operationId: ServiceController.deleteService
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
/services:
post:
x-controller-name: ServiceController
x-operation-name: createService
tags:
- ServiceController
responses:
'200':
description: Return value of ServiceController.createService
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateServiceDto'
required: true
operationId: ServiceController.createService
get:
x-controller-name: ServiceController
x-operation-name: getAllServices
tags:
- ServiceController
responses:
'200':
description: Return value of ServiceController.getAllServices
operationId: ServiceController.getAllServices
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: uom
in: query
schema:
type: string
- name: category_name
in: query
schema:
type: string
- name: is_sellable
in: query
schema:
type: boolean
- name: include_archived
in: query
schema:
type: boolean
- name: include_deleted
in: query
schema:
type: boolean
components:
schemas:
UpdateServiceDto:
title: UpdateServiceDto
type: object
properties:
name:
type: string
category_name:
type:
- string
- 'null'
minLength: 1
maxLength: 35
is_sellable:
type: boolean
is_archived:
type: boolean
uom:
type: string
default_cost:
type:
- number
- 'null'
sales_price:
type:
- number
- 'null'
custom_field_collection_id:
type:
- integer
- 'null'
maximum: 2147483647
minimum: 1
sku:
type:
- string
- 'null'
minLength: 1
additional_info:
type:
- string
- 'null'
minLength: 1
custom_fields:
type: array
items:
title: CustomFieldValueDto
type: object
properties:
field_name:
type: string
field_value:
type: string
required:
- field_name
- field_value
additionalProperties: false
additionalProperties: false
CreateServiceDto:
title: CreateServiceDto
type: object
properties:
name:
type: string
minLength: 1
uom:
type: string
minLength: 1
maxLength: 7
category_name:
type: string
minLength: 1
is_sellable:
type: boolean
additional_info:
type: string
variants:
type: array
minItems: 1
maxItems: 1
items:
title: CreateServiceVariantDto
type: object
properties:
sku:
type: string
minLength: 1
sales_price:
type:
- number
- 'null'
minimum: 0
maximum: 100000000000
default_cost:
type:
- number
- 'null'
minimum: 0
maximum: 100000000000
custom_fields:
type: array
maxItems: 3
items:
title: CustomFieldValueDto
type: object
properties:
field_name:
type: string
field_value:
type: string
required:
- field_name
- field_value
additionalProperties: false
additionalProperties: false
custom_field_collection_id:
type:
- number
- 'null'
required:
- name
- variants
additionalProperties: false