Phasio Manufacturer Assembly Controller API

Endpoints for managing assemblies

Operations 8

GET /api/manufacturer/v1/assemblies/{id} Get assembly by ID #
PUT /api/manufacturer/v1/assemblies/{id} Update assembly #
DELETE /api/manufacturer/v1/assemblies/{id} Delete assembly #
PUT /api/manufacturer/v1/assemblies/{id}/customer-reference Update customer article reference #
GET /api/manufacturer/v1/assemblies List assemblies #
POST /api/manufacturer/v1/assemblies Create assembly #
POST /api/manufacturer/v1/assemblies/{id}/catalog Add assembly to catalog #
DELETE /api/manufacturer/v1/assemblies/{id}/customer-reference/{customerOrganisationId} Delete customer article reference #

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-assembly-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-assembly-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer Assembly 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 Assembly Controller
  description: Endpoints for managing assemblies
paths:
  /api/manufacturer/v1/assemblies/{id}:
    get:
      tags:
      - Manufacturer Assembly Controller
      summary: Get assembly by ID
      description: Retrieves a specific assembly by its ID
      operationId: getAssembly
      parameters:
      - name: id
        in: path
        description: Assembly ID
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Successfully retrieved assembly
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssemblyDto'
        '404':
          description: Assembly not found
    put:
      tags:
      - Manufacturer Assembly Controller
      summary: Update assembly
      description: Updates an existing assembly
      operationId: updateAssembly
      parameters:
      - name: id
        in: path
        description: Assembly ID
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAssemblyDto'
        required: true
      responses:
        '200':
          description: Assembly successfully updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssemblyDto'
        '400':
          description: Invalid request data
        '404':
          description: Assembly not found
    delete:
      tags:
      - Manufacturer Assembly Controller
      summary: Delete assembly
      description: Deletes an assembly
      operationId: deleteAssembly
      parameters:
      - name: id
        in: path
        description: Assembly ID
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '204':
          description: Assembly successfully deleted
        '404':
          description: Assembly not found
  /api/manufacturer/v1/assemblies/{id}/customer-reference:
    put:
      tags:
      - Manufacturer Assembly Controller
      summary: Update customer article reference
      description: Updates the customer's article reference for a specific assembly
      operationId: updateCustomerReference_1
      parameters:
      - name: id
        in: path
        description: Assembly ID
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerArticleReferenceDto'
        required: true
      responses:
        '200':
          description: Customer reference successfully updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssemblyDto'
        '400':
          description: Invalid request data
        '401':
          description: Unauthorized - operator not found
  /api/manufacturer/v1/assemblies:
    get:
      tags:
      - Manufacturer Assembly Controller
      summary: List assemblies
      description: Retrieves a paginated list of assemblies with optional filtering and search
      operationId: listAssemblies
      parameters:
      - name: filter
        in: query
        description: filter specification
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: Zero-based page index (0..N)
        required: false
        schema:
          type: integer
          default: 0
          minimum: 0
      - name: size
        in: query
        description: The size of the page to be returned
        required: false
        schema:
          type: integer
          default: 20
          minimum: 1
      - name: sort
        in: query
        description: 'Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.'
        required: false
        schema:
          type: array
          default:
          - createdAt,DESC
          items:
            type: string
      - name: search
        in: query
        description: Optional search term
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successfully retrieved assemblies
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Paginated'
        '400':
          description: Invalid filter specification
    post:
      tags:
      - Manufacturer Assembly Controller
      summary: Create assembly
      description: Creates a new assembly with items
      operationId: createAssembly
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAssemblyDto'
        required: true
      responses:
        '200':
          description: Assembly successfully created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssemblyDto'
        '400':
          description: Invalid request data or referenced entities not found
        '401':
          description: Unauthorized - operator not found
  /api/manufacturer/v1/assemblies/{id}/catalog:
    post:
      tags:
      - Manufacturer Assembly Controller
      summary: Add assembly to catalog
      description: Adds an assembly to a customer's catalog
      operationId: addAssemblyToCatalog
      parameters:
      - name: id
        in: path
        description: Assembly ID
        required: true
        schema:
          type: string
          format: uuid
      - name: customerOrganisationId
        in: query
        description: Customer organisation ID
        required: true
        schema:
          type: integer
          format: int64
      - name: reference
        in: query
        description: Customer reference
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Assembly successfully added to catalog
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssemblyDto'
        '400':
          description: Invalid request data
        '404':
          description: Assembly or customer organisation not found
  /api/manufacturer/v1/assemblies/{id}/customer-reference/{customerOrganisationId}:
    delete:
      tags:
      - Manufacturer Assembly Controller
      summary: Delete customer article reference
      description: Removes the customer's article reference from a specific assembly
      operationId: deleteCustomerReference_1
      parameters:
      - name: id
        in: path
        description: Assembly ID
        required: true
        schema:
          type: string
          format: uuid
      - name: customerOrganisationId
        in: path
        description: ID of the customer organization whose reference should be deleted
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Customer reference successfully deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssemblyDto'
        '404':
          description: Assembly or customer reference not found
        '401':
          description: Unauthorized - operator not found
components:
  schemas:
    UpdateAssemblyDto:
      type: object
      description: Assembly update request
      properties:
        name:
          type: string
          minLength: 1
        assemblyPrice:
          type: number
        items:
          type: array
          items:
            $ref: '#/components/schemas/CreateAssemblyItemDto'
          minItems: 1
      required:
      - assemblyPrice
      - items
      - name
    CreateAssemblyDto:
      type: object
      description: Assembly creation request
      properties:
        name:
          type: string
          minLength: 1
        assemblyPrice:
          type: number
        items:
          type: array
          items:
            $ref: '#/components/schemas/CreateAssemblyItemDto'
          minItems: 1
      required:
      - assemblyPrice
      - items
      - name
    Paginated:
      type: object
      properties:
        content:
          type: array
          items: {}
        totalElements:
          type: integer
        totalPages:
          type: integer
        pageNumber:
          type: integer
        pageSize:
          type: integer
        isEmpty:
          type: boolean
        isFirst:
          type: boolean
        isLast:
          type: boolean
      required:
      - content
      - isEmpty
      - isFirst
      - isLast
      - pageNumber
      - pageSize
      - totalElements
      - totalPages
    AssemblyItemDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        partSpecificationId:
          type: string
          format: uuid
        partRevisionId:
          type: string
          format: uuid
        partName:
          type: string
        positionX:
          type: number
        positionY:
          type: number
        positionZ:
          type: number
        rotationX:
          type: number
        rotationY:
          type: number
        rotationZ:
          type: number
      required:
      - id
      - partSpecificationId
      - positionX
      - positionY
      - positionZ
      - rotationX
      - rotationY
      - rotationZ
    AssemblyDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        assemblyPrice:
          type: number
        items:
          type: array
          items:
            $ref: '#/components/schemas/AssemblyItemDto'
        customerReferences:
          type: array
          items:
            $ref: '#/components/schemas/CustomerArticleReferenceDto'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - assemblyPrice
      - customerReferences
      - id
      - items
      - name
    CustomerArticleReferencePricingTierDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        quantity:
          type: integer
          format: int32
        price:
          type: number
      required:
      - price
      - quantity
    CustomerArticleReferenceDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        customerOrganisationId:
          type: integer
          format: int64
        customerOrganisationName:
          type: string
        reference:
          type: string
        pricingTiers:
          type: array
          items:
            $ref: '#/components/schemas/CustomerArticleReferencePricingTierDto'
        showInCatalog:
          type: boolean
      required:
      - customerOrganisationId
      - pricingTiers
      - reference
    CreateAssemblyItemDto:
      type: object
      properties:
        partSpecificationId:
          type: string
          format: uuid
        positionX:
          type: number
        positionY:
          type: number
        positionZ:
          type: number
        rotationX:
          type: number
        rotationY:
          type: number
        rotationZ:
          type: number
      required:
      - partSpecificationId
      - positionX
      - positionY
      - positionZ
      - rotationX
      - rotationY
      - rotationZ
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT