Phasio payment-term-resource API

The payment-term-resource API from Phasio — 2 operation(s) for payment-term-resource.

Operations 4

GET /api/manufacturer/v1/payment-term #
POST /api/manufacturer/v1/payment-term #
DELETE /api/manufacturer/v1/payment-term/{id} #
PATCH /api/manufacturer/v1/payment-term/{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-payment-term-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-payment-term-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Payment Term 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: payment-term-resource
paths:
  /api/manufacturer/v1/payment-term:
    get:
      tags:
      - payment-term-resource
      operationId: list
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PaymentTermDto'
    post:
      tags:
      - payment-term-resource
      operationId: create_8
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePaymentTermDto'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PaymentTermDto'
  /api/manufacturer/v1/payment-term/{id}:
    delete:
      tags:
      - payment-term-resource
      operationId: delete_8
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: object
    patch:
      tags:
      - payment-term-resource
      operationId: update_10
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePaymentTermDto'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PaymentTermDto'
components:
  schemas:
    UpdatePaymentTermDto:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        accountingSystemTermId:
          type: string
      required:
      - name
    CreatePaymentTermDto:
      type: object
      properties:
        name:
          type: string
          minLength: 1
      required:
      - name
    PaymentTermDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        accountingSystemTermId:
          type: string
      required:
      - id
      - name
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT