Phasio Manufacturer Payment Information Controller API

Endpoints for managing operator payment information and settings

Operations 4

POST /api/manufacturer/v1/operator/payment-information/update Update operator payment information #
GET /api/manufacturer/v1/operator/payment-information Get all operator payment information #
GET /api/manufacturer/v1/operator/payment-information/{paymentInformationId} Get operator payment information by ID #
DELETE /api/manufacturer/v1/operator/payment-information/{paymentInformationId}/delete Delete operator payment information #

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-payment-information-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-payment-information-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer Payment Information 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 Payment Information Controller
  description: Endpoints for managing operator payment information and settings
paths:
  /api/manufacturer/v1/operator/payment-information/update:
    post:
      tags:
      - Manufacturer Payment Information Controller
      summary: Update operator payment information
      description: Updates payment information settings for the current operator
      operationId: updateOperatorPaymentInformation
      requestBody:
        content:
          application/json:
            schema:
              type: array
              description: Payment information update details
              items:
                $ref: '#/components/schemas/UpdateOperatorPaymentInformationDto'
        required: true
      responses:
        '200':
          description: Payment information successfully updated
          content:
            application/json:
              schema:
                type: array
                items:
                  type: integer
                  format: int64
        '400':
          description: Invalid payment information data
        '401':
          description: Unauthorized - operator not found
  /api/manufacturer/v1/operator/payment-information:
    get:
      tags:
      - Manufacturer Payment Information Controller
      summary: Get all operator payment information
      description: Retrieves all payment information settings for the current operator
      operationId: getOperatorPaymentInformationList
      responses:
        '200':
          description: Payment information successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperatorPaymentInformationDto'
        '401':
          description: Unauthorized - operator not found
  /api/manufacturer/v1/operator/payment-information/{paymentInformationId}:
    get:
      tags:
      - Manufacturer Payment Information Controller
      summary: Get operator payment information by ID
      description: Retrieves a specific payment information setting by its ID
      operationId: getOperatorPaymentInformation
      parameters:
      - name: paymentInformationId
        in: path
        description: ID of the payment information to retrieve
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Payment information successfully retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OperatorPaymentInformationDto'
        '400':
          description: Payment information not found
  /api/manufacturer/v1/operator/payment-information/{paymentInformationId}/delete:
    delete:
      tags:
      - Manufacturer Payment Information Controller
      summary: Delete operator payment information
      description: Deletes a specific payment information setting
      operationId: deleteOperatorPaymentInformation
      parameters:
      - name: paymentInformationId
        in: path
        description: ID of the payment information to delete
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '204':
          description: Payment information successfully deleted
        '400':
          description: Invalid payment information ID or deletion failed
components:
  schemas:
    UpdateOperatorPaymentInformationDto:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
      required:
      - name
      - value
    OperatorPaymentInformationDto:
      type: object
      properties:
        paymentInformationId:
          type: integer
          format: int64
        name:
          type: string
        value:
          type: string
      required:
      - name
      - paymentInformationId
      - value
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT