Phasio Manufacturer Tax Jurisdiction Controller API

Endpoints for managing tax jurisdictions and their associated tax components

Operations 6

GET /api/manufacturer/v1/tax-jurisdiction Get all tax jurisdictions #
POST /api/manufacturer/v1/tax-jurisdiction Create tax jurisdiction #
POST /api/manufacturer/v1/tax-jurisdiction/batch Batch create tax jurisdictions #
DELETE /api/manufacturer/v1/tax-jurisdiction/{id} Delete tax jurisdiction #
PATCH /api/manufacturer/v1/tax-jurisdiction/{id} Update tax jurisdiction #
PATCH /api/manufacturer/v1/tax-jurisdiction/accounting-system/associate Associate accounting system taxes #

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-jurisdiction-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-tax-jurisdiction-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Manufacturer Tax Jurisdiction 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 Jurisdiction Controller
  description: Endpoints for managing tax jurisdictions and their associated tax components
paths:
  /api/manufacturer/v1/tax-jurisdiction:
    get:
      tags:
      - Manufacturer Tax Jurisdiction Controller
      summary: Get all tax jurisdictions
      description: Retrieves all tax jurisdictions in the system
      operationId: get_1
      parameters:
      - name: includeAccountingSystemAssociated
        in: query
        description: Whether to include accounting system associated jurisdictions
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Tax jurisdictions retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TaxJurisdictionDto'
    post:
      tags:
      - Manufacturer Tax Jurisdiction Controller
      summary: Create tax jurisdiction
      description: Creates a new tax jurisdiction with associated tax components
      operationId: create_2
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaxJurisdictionDto'
        required: true
      responses:
        '200':
          description: Tax jurisdiction created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaxJurisdictionDto'
        '400':
          description: Invalid tax jurisdiction data
  /api/manufacturer/v1/tax-jurisdiction/batch:
    post:
      tags:
      - Manufacturer Tax Jurisdiction Controller
      summary: Batch create tax jurisdictions
      description: Creates multiple tax jurisdictions with the same tax components and settings. Silently skips jurisdictions that already exist.
      operationId: createBatch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchCreateTaxJurisdictionDto'
        required: true
      responses:
        '200':
          description: Tax jurisdictions created successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TaxJurisdictionDto'
        '400':
          description: Invalid tax jurisdiction data
  /api/manufacturer/v1/tax-jurisdiction/{id}:
    delete:
      tags:
      - Manufacturer Tax Jurisdiction Controller
      summary: Delete tax jurisdiction
      description: Deletes an existing tax jurisdiction
      operationId: delete_3
      parameters:
      - name: id
        in: path
        description: ID of the tax jurisdiction to delete
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '204':
          description: Tax jurisdiction deleted successfully
        '404':
          description: Tax jurisdiction not found
    patch:
      tags:
      - Manufacturer Tax Jurisdiction Controller
      summary: Update tax jurisdiction
      description: Updates an existing tax jurisdiction
      operationId: update_6
      parameters:
      - name: id
        in: path
        description: ID of the tax jurisdiction to update
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaxJurisdictionDto'
        required: true
      responses:
        '200':
          description: Tax jurisdiction updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaxJurisdictionDto'
        '400':
          description: Invalid update data
        '404':
          description: Tax jurisdiction not found
  /api/manufacturer/v1/tax-jurisdiction/accounting-system/associate:
    patch:
      tags:
      - Manufacturer Tax Jurisdiction Controller
      summary: Associate accounting system taxes
      description: Associates tax jurisdictions with accounting system tax codes (Deprecated)
      operationId: associateAccountingSystemTaxes
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssociateAccountingSystemTaxesDto'
        required: true
      responses:
        '204':
          description: Accounting system taxes associated successfully
        '400':
          description: Invalid association data
      deprecated: true
components:
  schemas:
    BatchCreateTaxJurisdictionDto:
      type: object
      description: Batch tax jurisdiction data to create
      properties:
        jurisdictionIsoCodes:
          type: array
          items:
            type: string
          minItems: 1
        taxComponentIds:
          type: array
          items:
            type: string
            format: uuid
          minItems: 1
        allowExemption:
          type: boolean
        applyToShippingCost:
          type: boolean
        accountingSystemTaxId:
          type: string
      required:
      - allowExemption
      - applyToShippingCost
      - jurisdictionIsoCodes
      - taxComponentIds
    TaxJurisdictionDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        jurisdictionName:
          type: string
        jurisdictionIsoCode:
          type: string
        taxComponentIds:
          type: array
          items:
            type: string
            format: uuid
        country:
          type: string
        state:
          type: string
        taxComponents:
          type: array
          items:
            $ref: '#/components/schemas/TaxComponentDto'
        allowExemption:
          type: boolean
        applyToShippingCost:
          type: boolean
        accountingSystemTaxId:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - allowExemption
      - applyToShippingCost
    AssociateAccountingSystemTaxDto:
      type: object
      properties:
        taxJurisdictionId:
          type: string
          format: uuid
        accountingSystemTaxId:
          type: string
      required:
      - accountingSystemTaxId
      - taxJurisdictionId
    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
    AssociateAccountingSystemTaxesDto:
      type: object
      description: Tax association data
      properties:
        taxes:
          type: array
          items:
            $ref: '#/components/schemas/AssociateAccountingSystemTaxDto'
      required:
      - taxes
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT