Phasio Manufacturer Tax Component Controller API

Endpoints for managing tax components and rates

Operations 4

GET /api/manufacturer/v1/tax-component Get all tax components #
POST /api/manufacturer/v1/tax-component Create tax component #
DELETE /api/manufacturer/v1/tax-component/{id} Delete tax component #
PATCH /api/manufacturer/v1/tax-component/{id} Update tax component #

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-tax-component-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

phasio-manufacturer-tax-component-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer Tax Component 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 Tax Component Controller
  description: Endpoints for managing tax components and rates
paths:
  /api/manufacturer/v1/tax-component:
    get:
      tags:
      - Manufacturer Tax Component Controller
      summary: Get all tax components
      description: Retrieves all tax components in the system
      operationId: get_2
      responses:
        '200':
          description: Tax components retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TaxComponentDto'
    post:
      tags:
      - Manufacturer Tax Component Controller
      summary: Create tax component
      description: Creates a new tax component with specified rate
      operationId: create_3
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaxComponentDto'
        required: true
      responses:
        '200':
          description: Tax component created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaxComponentDto'
        '400':
          description: Invalid tax component data
  /api/manufacturer/v1/tax-component/{id}:
    delete:
      tags:
      - Manufacturer Tax Component Controller
      summary: Delete tax component
      description: Deletes an existing tax component
      operationId: delete_4
      parameters:
      - name: id
        in: path
        description: ID of the tax component to delete
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '204':
          description: Tax component deleted successfully
        '404':
          description: Tax component not found
    patch:
      tags:
      - Manufacturer Tax Component Controller
      summary: Update tax component
      description: Updates an existing tax component
      operationId: update_7
      parameters:
      - name: id
        in: path
        description: ID of the tax component to update
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaxComponentDto'
        required: true
      responses:
        '200':
          description: Tax component updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaxComponentDto'
        '400':
          description: Invalid update data
        '404':
          description: Tax component not found
components:
  schemas:
    TaxComponentDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        shortName:
          type: string
        longName:
          type: string
        percentage:
          type: number
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - longName
      - percentage
      - shortName
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT