Phasio Manufacturer Shipping Box Controller API

Endpoints for managing shipping box dimensions used for shipments

Operations 5

POST /api/manufacturer/v1/shipping-box Create shipping box #
PATCH /api/manufacturer/v1/shipping-box Update shipping box #
GET /api/manufacturer/v1/shipping-box/{shippingBoxId} Get shipping box by ID #
DELETE /api/manufacturer/v1/shipping-box/{shippingBoxId} Delete shipping box #
GET /api/manufacturer/v1/shipping-box/operator Get all shipping boxes for operator #

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-shipping-box-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-shipping-box-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer Shipping Box 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 Shipping Box Controller
  description: Endpoints for managing shipping box dimensions used for shipments
paths:
  /api/manufacturer/v1/shipping-box:
    post:
      tags:
      - Manufacturer Shipping Box Controller
      summary: Create shipping box
      description: Creates a new shipping box with specified dimensions
      operationId: createShippingBox
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateShippingBoxDto'
        required: true
      responses:
        '200':
          description: Shipping box created successfully
          content:
            application/json:
              schema:
                type: integer
                format: int64
        '400':
          description: Invalid shipping box data
        '401':
          description: Unauthorized - operator not found
    patch:
      tags:
      - Manufacturer Shipping Box Controller
      summary: Update shipping box
      description: Updates an existing shipping box dimensions
      operationId: updateShippingBox
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateShippingBoxDto'
        required: true
      responses:
        '204':
          description: Shipping box updated successfully
        '400':
          description: Invalid update data or shipping box not found
  /api/manufacturer/v1/shipping-box/{shippingBoxId}:
    get:
      tags:
      - Manufacturer Shipping Box Controller
      summary: Get shipping box by ID
      description: Retrieves a specific shipping box by its ID
      operationId: getShippingBox
      parameters:
      - name: shippingBoxId
        in: path
        description: ID of the shipping box to retrieve
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Shipping box retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShippingBoxDto'
        '404':
          description: Shipping box not found
    delete:
      tags:
      - Manufacturer Shipping Box Controller
      summary: Delete shipping box
      description: Deletes an existing shipping box
      operationId: deleteShippingBox
      parameters:
      - name: shippingBoxId
        in: path
        description: ID of the shipping box to delete
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '204':
          description: Shipping box deleted successfully
        '400':
          description: Delete failed or shipping box not found
  /api/manufacturer/v1/shipping-box/operator:
    get:
      tags:
      - Manufacturer Shipping Box Controller
      summary: Get all shipping boxes for operator
      description: Retrieves all shipping boxes associated with the current operator
      operationId: getShippingBoxes
      responses:
        '200':
          description: Shipping boxes retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ShippingBoxDto'
        '401':
          description: Unauthorized - operator not found
components:
  schemas:
    ShippingBoxDto:
      type: object
      properties:
        shippingBoxId:
          type: integer
          format: int64
        name:
          type: string
        length:
          type: number
        width:
          type: number
        height:
          type: number
        unit:
          type: string
      required:
      - height
      - length
      - name
      - shippingBoxId
      - unit
      - width
    UpdateShippingBoxDto:
      type: object
      description: Updated shipping box data
      properties:
        shippingBoxId:
          type: integer
          format: int64
        length:
          type: number
        width:
          type: number
        height:
          type: number
      required:
      - height
      - length
      - shippingBoxId
      - width
    CreateShippingBoxDto:
      type: object
      description: Shipping box data to create
      properties:
        name:
          type: string
        length:
          type: number
        width:
          type: number
        height:
          type: number
      required:
      - height
      - length
      - name
      - width
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT