Phasio Manufacturer Kanban Column Controller API

Endpoints for managing Kanban board columns for order processing workflow

Operations 4

GET /api/manufacturer/v1/kanban-column Get Kanban columns #
POST /api/manufacturer/v1/kanban-column Create Kanban column #
DELETE /api/manufacturer/v1/kanban-column/{id} Delete Kanban column #
PATCH /api/manufacturer/v1/kanban-column/{id} Update Kanban column #

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/phasio-manufacturer-kanban-column-controller-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

phasio-manufacturer-kanban-column-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer Kanban Column Controller API
  description: This is the API documentation for the Phasio application.
  version: '1.0'
servers:
- url: https://m-api.eu.phas.io
  description: Generated server url
security:
- Phasio API Bearer Token: []
tags:
- name: Manufacturer Kanban Column Controller
  description: Endpoints for managing Kanban board columns for order processing workflow
paths:
  /api/manufacturer/v1/kanban-column:
    get:
      tags:
      - Manufacturer Kanban Column Controller
      summary: Get Kanban columns
      description: Retrieves all Kanban columns for the current operator, optionally filtered by order status
      operationId: get_9
      parameters:
      - name: orderStatus
        in: query
        description: Order status to filter Kanban columns by (optional)
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Kanban columns successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KanbanColumnDto'
        '401':
          description: Unauthorized - operator not found
    post:
      tags:
      - Manufacturer Kanban Column Controller
      summary: Create Kanban column
      description: Creates a new Kanban column for the order processing workflow
      operationId: create_12
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateKanbanColumnDto'
        required: true
      responses:
        '200':
          description: Kanban column successfully created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KanbanColumnDto'
        '400':
          description: Invalid Kanban column data
        '401':
          description: Unauthorized - operator not found
  /api/manufacturer/v1/kanban-column/{id}:
    delete:
      tags:
      - Manufacturer Kanban Column Controller
      summary: Delete Kanban column
      description: Deletes an existing Kanban column
      operationId: delete_10
      parameters:
      - name: id
        in: path
        description: ID of the Kanban column to delete
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '204':
          description: Kanban column successfully deleted
        '400':
          description: Invalid Kanban column ID or deletion failed
    patch:
      tags:
      - Manufacturer Kanban Column Controller
      summary: Update Kanban column
      description: Updates an existing Kanban column's properties
      operationId: update_15
      parameters:
      - name: id
        in: path
        description: ID of the Kanban column to update
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateKanbanColumnDto'
        required: true
      responses:
        '200':
          description: Kanban column successfully updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KanbanColumnDto'
        '400':
          description: Invalid update data or Kanban column not found
components:
  schemas:
    CreateKanbanColumnDto:
      type: object
      description: Kanban column creation details
      properties:
        name:
          type: string
        sequence:
          type: integer
          format: int32
        orderStatus:
          type: string
        automations:
          type: array
          items:
            type: string
      required:
      - automations
      - name
      - orderStatus
      - sequence
    KanbanColumnDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        sequence:
          type: integer
          format: int32
        orderStatus:
          type: string
        automations:
          type: array
          items:
            $ref: '#/components/schemas/KanbanColumnAutomationDto'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - automations
      - createdAt
      - id
      - name
      - orderStatus
      - sequence
      - updatedAt
    UpdateKanbanColumnDto:
      type: object
      description: Kanban column update details
      properties:
        name:
          type: string
        sequence:
          type: integer
          format: int32
        orderStatus:
          type: string
        automations:
          type: array
          items:
            type: string
    KanbanColumnAutomationDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        kanbanColumnId:
          type: string
          format: uuid
        type:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - createdAt
      - id
      - kanbanColumnId
      - type
      - updatedAt
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT