Phasio Addresses API

API for managing addresses for customers and organizations

Operations 9

GET /api/manufacturer/v1/address/{addressId} Get an address by ID #
PUT /api/manufacturer/v1/address/{addressId} Edit an existing address #
DELETE /api/manufacturer/v1/address/{addressId} Delete an address #
POST /api/manufacturer/v1/address/create Create a new address #
PATCH /api/manufacturer/v1/address/{addressId}/shipping Set address as default shipping address #
PATCH /api/manufacturer/v1/address/{addressId}/billing Set address as default billing address #
PATCH /api/manufacturer/v1/address/jurisdiction Update jurisdiction for all addresses #
GET /api/manufacturer/v1/address/organisation/{organisationId} Get addresses by customer organization #
GET /api/manufacturer/v1/address/customer/{customerId} Get addresses by customer #

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-addresses-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-addresses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Addresses 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: Addresses
  description: API for managing addresses for customers and organizations
paths:
  /api/manufacturer/v1/address/{addressId}:
    get:
      tags:
      - Addresses
      summary: Get an address by ID
      description: Retrieves address details for the specified ID
      operationId: getById
      parameters:
      - name: addressId
        in: path
        description: ID of the address to retrieve
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      responses:
        '200':
          description: Address retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressDto'
        '404':
          description: Address not found
    put:
      tags:
      - Addresses
      summary: Edit an existing address
      description: Creates a new address with the updated details, soft-deletes the old address, and transfers billing status if applicable
      operationId: edit
      parameters:
      - name: addressId
        in: path
        description: ID of the address to edit
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EditAddressDto'
        required: true
      responses:
        '200':
          description: Address edited successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressDto'
        '404':
          description: Address not found or already deleted
    delete:
      tags:
      - Addresses
      summary: Delete an address
      description: Deletes the specified address
      operationId: delete_1
      parameters:
      - name: addressId
        in: path
        description: ID of the address to delete
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      responses:
        '200':
          description: Address deleted successfully
          content:
            text/plain:
              schema:
                type: string
        '400':
          description: Invalid address ID or address cannot be deleted
          content:
            text/plain:
              schema:
                type: string
        '401':
          description: Unauthorized - missing operator context
  /api/manufacturer/v1/address/create:
    post:
      tags:
      - Addresses
      summary: Create a new address
      description: Creates a new address using the provided details
      operationId: create_16
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAddressDto'
        required: true
      responses:
        '200':
          description: Address created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressDto'
        '400':
          description: Invalid address data
  /api/manufacturer/v1/address/{addressId}/shipping:
    patch:
      tags:
      - Addresses
      summary: Set address as default shipping address
      description: Marks an address as the default shipping address
      operationId: setShippingAddress
      parameters:
      - name: addressId
        in: path
        description: ID of the address to set as shipping address
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      responses:
        '200':
          description: Address set as shipping address successfully
        '400':
          description: Invalid address ID or operation failed
  /api/manufacturer/v1/address/{addressId}/billing:
    patch:
      tags:
      - Addresses
      summary: Set address as default billing address
      description: Marks an address as the default billing address
      operationId: setBillingAddress
      parameters:
      - name: addressId
        in: path
        description: ID of the address to set as billing address
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      responses:
        '200':
          description: Address set as billing address successfully
        '400':
          description: Invalid address ID or operation failed
  /api/manufacturer/v1/address/jurisdiction:
    patch:
      tags:
      - Addresses
      summary: Update jurisdiction for all addresses
      description: Updates the jurisdiction information for all addresses in the system
      operationId: updateJurisdiction
      responses:
        '204':
          description: Jurisdictions updated successfully
  /api/manufacturer/v1/address/organisation/{organisationId}:
    get:
      tags:
      - Addresses
      summary: Get addresses by customer organization
      description: Retrieves all addresses associated with the specified customer organization
      operationId: getByCustomerOrganisation_2
      parameters:
      - name: organisationId
        in: path
        description: ID of the customer organization to retrieve addresses for
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      responses:
        '200':
          description: Addresses retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddressDto'
  /api/manufacturer/v1/address/customer/{customerId}:
    get:
      tags:
      - Addresses
      summary: Get addresses by customer
      description: Retrieves all addresses associated with the specified customer
      operationId: getByCustomer_1
      parameters:
      - name: customerId
        in: path
        description: ID of the customer to retrieve addresses for
        required: true
        schema:
          type: integer
          format: int64
        example: 1
      responses:
        '200':
          description: Addresses retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddressDto'
components:
  schemas:
    CreateAddressDto:
      type: object
      properties:
        street1:
          type: string
        street2:
          type: string
        city:
          type: string
        state:
          type: string
        country:
          type: string
        jurisdictionIsoCode:
          type: string
        zip:
          type: string
        name:
          type: string
        company:
          type: string
        phone:
          type: string
        email:
          type: string
        residential:
          type: boolean
        organisationId:
          type: integer
          format: int64
        taxId:
          type: string
      required:
      - city
      - company
      - country
      - email
      - name
      - organisationId
      - phone
      - residential
      - state
      - street1
      - street2
      - zip
    AddressDto:
      type: object
      discriminator:
        propertyName: addressType
      properties:
        addressId:
          type: integer
          format: int64
        isBillingAddress:
          type: boolean
        isShippingAddress:
          type: boolean
        street1:
          type: string
        street2:
          type: string
        city:
          type: string
        state:
          type: string
        country:
          type: string
        countryAlpha2Code:
          type: string
        countryAlpha3Code:
          type: string
        jurisdictionIsoCode:
          type: string
        zip:
          type: string
        name:
          type: string
        company:
          type: string
        phone:
          type: string
        email:
          type: string
        residential:
          type: boolean
        addressType:
          type: string
        platformEncryptedAesKey:
          type: string
        taxId:
          type: string
      required:
      - addressId
      - addressType
      - city
      - company
      - country
      - countryAlpha2Code
      - countryAlpha3Code
      - email
      - isBillingAddress
      - isShippingAddress
      - name
      - phone
      - platformEncryptedAesKey
      - residential
      - street1
      - street2
      - zip
    EditAddressDto:
      type: object
      properties:
        street1:
          type: string
        street2:
          type: string
        city:
          type: string
        state:
          type: string
        country:
          type: string
        jurisdictionIsoCode:
          type: string
        zip:
          type: string
        name:
          type: string
        company:
          type: string
        phone:
          type: string
        email:
          type: string
        residential:
          type: boolean
        taxId:
          type: string
      required:
      - city
      - company
      - country
      - email
      - name
      - phone
      - residential
      - state
      - street1
      - street2
      - zip
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT