Katana DemandForecastController API

The DemandForecastController API from Katana — 1 operation(s) for demandforecastcontroller.

Business capability
Demand Planning Management BC-520.10

Operations 3

POST /demand_forecasts #
GET /demand_forecasts #
DELETE /demand_forecasts #

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-demandforecastcontroller-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-demandforecastcontroller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: katana-api-gateway AdditionalCostController Demand Forecast Controller API
  version: 0.0.1
  description: public api
  contact: {}
servers:
- url: https://api.katanamrp.com/v1
tags:
- name: DemandForecastController
paths:
  /demand_forecasts:
    post:
      x-controller-name: DemandForecastController
      x-operation-name: updateDemandForecast
      tags:
      - DemandForecastController
      responses:
        '200':
          description: Return value of DemandForecastController.updateDemandForecast
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DemandForecastUpdateDto'
        required: true
      operationId: DemandForecastController.updateDemandForecast
    get:
      x-controller-name: DemandForecastController
      x-operation-name: findDemandForecast
      tags:
      - DemandForecastController
      responses:
        '200':
          description: Return value of DemandForecastController.findDemandForecast
      operationId: DemandForecastController.findDemandForecast
      parameters:
      - name: variant_id
        in: query
        schema:
          type: integer
          format: int32
        required: true
      - name: location_id
        in: query
        schema:
          type: integer
          format: int32
        required: true
    delete:
      x-controller-name: DemandForecastController
      x-operation-name: clearDemandForecast
      tags:
      - DemandForecastController
      responses:
        '200':
          description: Return value of DemandForecastController.clearDemandForecast
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DemandForecastClearDto'
        required: true
      operationId: DemandForecastController.clearDemandForecast
components:
  schemas:
    DemandForecastClearDto:
      title: DemandForecastClearDto
      type: object
      properties:
        variant_id:
          type: number
        location_id:
          type: number
        periods:
          type: array
          items:
            title: DemandForecastClearPeriod
            type: object
            properties:
              period_start:
                type: string
              period_end:
                type: string
            required:
            - period_start
            - period_end
            additionalProperties: false
      required:
      - variant_id
      - location_id
      - periods
      additionalProperties: false
    DemandForecastUpdateDto:
      title: DemandForecastUpdateDto
      type: object
      properties:
        variant_id:
          type: number
        location_id:
          type: number
        periods:
          type: array
          items:
            title: DemandForecastUpdatePeriod
            type: object
            properties:
              period_start:
                type: string
              period_end:
                type: string
              committed:
                type: string
            required:
            - period_start
            - period_end
            - committed
            additionalProperties: false
      required:
      - variant_id
      - location_id
      - periods
      additionalProperties: false