Phasio Internal Customer Organisation Controller API

Endpoints for managing customer organizations from internal services

Operations 3

GET /api/internal/v1/customer-organisation/{organisationId} Get customer organisation by ID #
GET /api/internal/v1/customer-organisation/{organisationId}/custom-pricing Check if customer organisation has custom pricing #
GET /api/internal/v1/customer-organisation/customer/{customerId} Get customer organisation by customer 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-internal-customer-organisation-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-internal-customer-organisation-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phasio Activity Internal Internal Customer Organisation 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: Internal Customer Organisation Controller
  description: Endpoints for managing customer organizations from internal services
paths:
  /api/internal/v1/customer-organisation/{organisationId}:
    get:
      tags:
      - Internal Customer Organisation Controller
      summary: Get customer organisation by ID
      description: Retrieves information about a specific customer organisation
      operationId: get_28
      parameters:
      - name: organisationId
        in: path
        description: Customer organisation ID to retrieve
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Successfully retrieved customer organisation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerOrganisationDto'
        '400':
          description: Invalid organisation ID
        '401':
          description: Unauthorized - missing or invalid authentication
        '404':
          description: Customer organisation not found
  /api/internal/v1/customer-organisation/{organisationId}/custom-pricing:
    get:
      tags:
      - Internal Customer Organisation Controller
      summary: Check if customer organisation has custom pricing
      description: Determines whether a customer organisation has custom pricing configured
      operationId: hasCustomPricing
      parameters:
      - name: organisationId
        in: path
        description: Customer organisation ID to check
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Successfully checked custom pricing status
          content:
            application/json:
              schema:
                type: boolean
        '400':
          description: Invalid organisation ID
        '401':
          description: Unauthorized - missing or invalid authentication
        '404':
          description: Customer organisation not found
  /api/internal/v1/customer-organisation/customer/{customerId}:
    get:
      tags:
      - Internal Customer Organisation Controller
      summary: Get customer organisation by customer ID
      description: Retrieves information about a specific customer organisation based on customer ID
      operationId: getByCustomer_2
      parameters:
      - name: customerId
        in: path
        description: Customer ID to retrieve
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Successfully retrieved customer organisation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerOrganisationDto'
        '400':
          description: Invalid organisation ID
        '401':
          description: Unauthorized - missing or invalid authentication
        '404':
          description: Customer organisation not found
components:
  schemas:
    CustomerAddressDto:
      type: object
      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
        taxId:
          type: string
    CustomerOrganisationDto:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        taxExempt:
          type: boolean
        customerType:
          type: string
        createdAt:
          type: string
          format: date-time
        lastUpdated:
          type: string
          format: date-time
        customers:
          type: array
          items:
            $ref: '#/components/schemas/CustomerDto'
        addresses:
          type: array
          items:
            $ref: '#/components/schemas/CustomerAddressDto'
      required:
      - addresses
      - createdAt
      - customerType
      - customers
      - lastUpdated
      - taxExempt
    CustomerDto:
      type: object
      properties:
        email:
          type: string
        customerId:
          type: integer
          format: int64
        organisationName:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        phoneNumber:
          type: string
        language:
          type: string
        notificationPreference:
          type: string
        discountId:
          type: integer
          format: int64
        discountPercentage:
          type: number
        customerType:
          type: string
      required:
      - customerType
      - language
      - notificationPreference
  securitySchemes:
    Phasio_API_Bearer_Token:
      type: http
      name: Authorization
      in: header
      scheme: bearer
      bearerFormat: JWT