Phasio Manufacturer CAMSPEC Controller API

Endpoints for exporting CAMSPEC files and managing manifest mappings

Operations 4

POST /api/manufacturer/v1/camspec/manifest-mappings/lookup Get manifest mappings by manifest IDs (bulk lookup) #
POST /api/manufacturer/v1/camspec/export Export CAMSPEC archive for requisitions #
GET /api/manufacturer/v1/camspec/requisitions/{requisitionId}/manifest-mappings Get manifest mappings by requisition ID #
GET /api/manufacturer/v1/camspec/manifest-mappings/{manifestId} Get manifest mapping by manifest ID #

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-camspec-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-camspec-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer CAMSPEC 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 CAMSPEC Controller
  description: Endpoints for exporting CAMSPEC files and managing manifest mappings
paths:
  /api/manufacturer/v1/camspec/manifest-mappings/lookup:
    post:
      tags:
      - Manufacturer CAMSPEC Controller
      summary: Get manifest mappings by manifest IDs (bulk lookup)
      description: Retrieves the mapping between CAMSPEC manifest IDs and requisition IDs for the specified manifest IDs. Supports hundreds of manifest IDs.
      operationId: getManifestMappings
      requestBody:
        content:
          application/json:
            schema:
              type: array
              description: Set of manifest IDs to look up
              items:
                type: string
                format: uuid
              uniqueItems: true
        required: true
      responses:
        '200':
          description: Manifest mappings retrieved successfully
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CamspecManifestMappingDto'
        '400':
          description: Invalid request parameters
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CamspecManifestMappingDto'
  /api/manufacturer/v1/camspec/export:
    post:
      tags:
      - Manufacturer CAMSPEC Controller
      summary: Export CAMSPEC archive for requisitions
      description: Creates and downloads a CAMSPEC archive (.camspec file) containing manufacturing constraints and CAD files for the specified requisitions
      operationId: exportCamspec
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CamspecExportRequestDto'
        required: true
      responses:
        '200':
          description: CAMSPEC archive created successfully
          content:
            application/zip: {}
        '400':
          description: Invalid request parameters
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/StreamingResponseBody'
        '404':
          description: One or more requisitions not found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/StreamingResponseBody'
  /api/manufacturer/v1/camspec/requisitions/{requisitionId}/manifest-mappings:
    get:
      tags:
      - Manufacturer CAMSPEC Controller
      summary: Get manifest mappings by requisition ID
      description: Retrieves all CAMSPEC manifest mappings for a specific requisition ID (reverse lookup)
      operationId: getManifestMappingsByRequisition
      parameters:
      - name: requisitionId
        in: path
        description: The requisition ID to look up
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Manifest mappings retrieved successfully
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CamspecManifestMappingDto'
        '404':
          description: Requisition not found
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CamspecManifestMappingDto'
  /api/manufacturer/v1/camspec/manifest-mappings/{manifestId}:
    get:
      tags:
      - Manufacturer CAMSPEC Controller
      summary: Get manifest mapping by manifest ID
      description: Retrieves the mapping between a single CAMSPEC manifest ID and its corresponding requisition ID
      operationId: getManifestMapping
      parameters:
      - name: manifestId
        in: path
        description: The manifest ID to look up
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Manifest mapping retrieved successfully
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CamspecManifestMappingDto'
        '404':
          description: Manifest mapping not found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CamspecManifestMappingDto'
components:
  schemas:
    CamspecRequisitionEntryDto:
      type: object
      properties:
        requisitionId:
          type: integer
          format: int64
        quantity:
          type: integer
          format: int32
      required:
      - quantity
      - requisitionId
    CamspecManifestMappingDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        requisitionId:
          type: integer
          format: int64
        createdAt:
          type: string
          format: date-time
      required:
      - createdAt
      - id
      - requisitionId
    CamspecExportRequestDto:
      type: object
      description: CAMSPEC export request containing requisition IDs with quantities and priority
      properties:
        requisitionEntries:
          type: array
          items:
            $ref: '#/components/schemas/CamspecRequisitionEntryDto'
        fileType:
          type: string
          enum:
          - ORIGINAL_CAD_FILE
          - CORE_GEOMETRY
          - THUMBNAIL
          - PDF_DESIGN_FILE
          - WALL_THICKNESS_ANALYSIS
        priority:
          type: integer
          format: int32
      required:
      - fileType
      - priority
      - requisitionEntries
    StreamingResponseBody: {}
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT