Phasio equation-resource API

The equation-resource API from Phasio — 3 operation(s) for equation-resource.

Operations 4

POST /api/manufacturer/v1/equation #
DELETE /api/manufacturer/v1/equation/{equationId} #
PATCH /api/manufacturer/v1/equation/{equationId} #
PATCH /api/manufacturer/v1/equation/{equationId}/live #

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-equation-resource-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-equation-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Equation Resource 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: equation-resource
paths:
  /api/manufacturer/v1/equation:
    post:
      tags:
      - equation-resource
      operationId: create_14
      parameters:
      - name: processId
        in: query
        description: ID of the process to create an equation for
        required: false
        schema:
          type: string
          format: uuid
      - name: postProcessId
        in: query
        description: ID of the post-process to create an equation for
        required: false
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EquationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/TypescriptEquationDto'
  /api/manufacturer/v1/equation/{equationId}:
    delete:
      tags:
      - equation-resource
      operationId: delete_11
      parameters:
      - name: equationId
        in: path
        description: ID of the the equation to delete
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
    patch:
      tags:
      - equation-resource
      operationId: updateEquation
      parameters:
      - name: equationId
        in: path
        description: ID of the the equation to update
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EquationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/TypescriptEquationDto'
  /api/manufacturer/v1/equation/{equationId}/live:
    patch:
      tags:
      - equation-resource
      operationId: markAsLive
      parameters:
      - name: equationId
        in: path
        description: ID of the equation to make live on connected process or post-processing
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
components:
  schemas:
    TypescriptEquationDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        equation:
          type: string
        variables:
          type: array
          items:
            type: string
        lastUpdated:
          type: string
          format: date-time
      required:
      - equation
      - id
      - lastUpdated
      - variables
    EquationRequest:
      type: object
      properties:
        name:
          type: string
        equation:
          type: string
      required:
      - equation
      - name
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT