Phasio Internal Order Controller API

Endpoints for internal order processing operations

Operations 1

PATCH /api/internal/v1/order/payment Update order payment status #

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-internal-order-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-internal-order-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Internal Order 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: Internal Order Controller
  description: Endpoints for internal order processing operations
paths:
  /api/internal/v1/order/payment:
    patch:
      tags:
      - Internal Order Controller
      summary: Update order payment status
      description: Updates the payment status of an order (e.g., pending, paid, failed)
      operationId: updatePaymentStatus
      parameters:
      - name: orderId
        in: query
        description: ID of the order to update
        required: true
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        description: New payment status to set
        required: true
        schema:
          type: string
          enum:
          - UNPAID
          - IN_PROGRESS
          - FAILED
          - REFUNDED
          - CONFIRMED
          - PAID
      responses:
        '200':
          description: Payment status successfully updated
        '400':
          description: Invalid order ID or payment status
        '404':
          description: Order not found
components:
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT