Katana SalesOrderShippingFeeController API
The SalesOrderShippingFeeController API from Katana — 2 operation(s) for salesordershippingfeecontroller.
The SalesOrderShippingFeeController API from Katana — 2 operation(s) for salesordershippingfeecontroller.
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-salesordershippingfeecontroller-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 Sales Order Shipping Fee Controller API
version: 0.0.1
description: public api
contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: SalesOrderShippingFeeController
paths:
/sales_order_shipping_fee/{id}:
patch:
x-controller-name: SalesOrderShippingFeeController
x-operation-name: updateShippingFee
tags:
- SalesOrderShippingFeeController
responses:
'200':
description: Return value of SalesOrderShippingFeeController.updateShippingFee
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateShippingFeeDto'
required: true
x-parameter-index: 1
operationId: SalesOrderShippingFeeController.updateShippingFee
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
summary: Sales order shipping fee controller update shipping fee
x-summary-source: derived
get:
x-controller-name: SalesOrderShippingFeeController
x-operation-name: getShippingFee
tags:
- SalesOrderShippingFeeController
responses:
'200':
description: Return value of SalesOrderShippingFeeController.getShippingFee
operationId: SalesOrderShippingFeeController.getShippingFee
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
summary: Sales order shipping fee controller get shipping fee
x-summary-source: derived
delete:
x-controller-name: SalesOrderShippingFeeController
x-operation-name: deleteShippingFee
tags:
- SalesOrderShippingFeeController
responses:
'200':
description: Return value of SalesOrderShippingFeeController.deleteShippingFee
operationId: SalesOrderShippingFeeController.deleteShippingFee
parameters:
- name: id
in: path
schema:
type: integer
format: int32
required: true
summary: Sales order shipping fee controller delete shipping fee
x-summary-source: derived
/sales_order_shipping_fee:
post:
x-controller-name: SalesOrderShippingFeeController
x-operation-name: addShippingFee
tags:
- SalesOrderShippingFeeController
responses:
'200':
description: Return value of SalesOrderShippingFeeController.addShippingFee
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AddShippingFeeDto'
required: true
operationId: SalesOrderShippingFeeController.addShippingFee
summary: Sales order shipping fee controller add shipping fee
x-summary-source: derived
get:
x-controller-name: SalesOrderShippingFeeController
x-operation-name: getAllShippingFees
tags:
- SalesOrderShippingFeeController
responses:
'200':
description: Return value of SalesOrderShippingFeeController.getAllShippingFees
operationId: SalesOrderShippingFeeController.getAllShippingFees
parameters:
- name: pagination
in: query
content:
application/json:
schema:
type: object
additionalProperties: true
- name: sales_order_id
in: query
schema:
type: integer
format: int32
- name: dateFilter
in: query
content:
application/json:
schema:
type: object
additionalProperties: true
- name: include_deleted
in: query
schema:
type: boolean
summary: Sales order shipping fee controller get all shipping fees
x-summary-source: derived
components:
schemas:
AddShippingFeeDto:
title: AddShippingFeeDto
type: object
properties:
sales_order_id:
type: number
description:
type: string
amount:
type: string
tax_rate_id:
type: number
required:
- sales_order_id
- amount
additionalProperties: false
UpdateShippingFeeDto:
title: UpdateShippingFeeDto
type: object
properties:
description:
type: string
amount:
type: string
tax_rate_id:
type: number
required:
- amount
additionalProperties: false