vitagroup Multi tenant API

The Multi tenant API from vitagroup — 2 operation(s) for multi tenant.

Operations 3

GET /plugin/multi-tenant/service Get tenants #
POST /plugin/multi-tenant/service Store tenant #
DELETE /plugin/multi-tenant/service/{tenant_id} Delete Tenant #

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/vitagroup-multi-tenant-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

vitagroup-multi-tenant-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HIP EHRbase Multi tenant API
  description: 'HIP EHRbase Enterprise operations that are not part of the OSS, but are part of enterprise feature.

    Requires authorization with a tenant user upfront.'
  version: 2.0.0
  contact: {}
servers:
- url: https://{ehrbaseBaseUrl}
  description: An example HIP EHRbase API URL.
  variables:
    ehrbaseBaseUrl:
      default: hip-ehrbase.dev
security:
- bearerAuth: []
tags:
- name: Multi tenant
paths:
  /plugin/multi-tenant/service:
    get:
      tags:
      - Multi tenant
      summary: Get tenants
      operationId: getTenants
      responses:
        '200':
          description: ''
    post:
      tags:
      - Multi tenant
      summary: Store tenant
      operationId: storeTenant
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                tenantId:
                  type: string
                  example: '{{$guid}}'
                tenantName:
                  type: string
                  example: cdr-core-sanity-check
                tenantProperties:
                  type: object
                  properties:
                    client-id:
                      type: string
                      example: HIP-CDR-EHRbase-Service
                    host:
                      type: string
                      example: '{{keycloakUrl}}'
                    realm:
                      type: string
                      example: cdr-core-sanity-check
            examples:
              Store tenant:
                value:
                  tenantId: '{{$guid}}'
                  tenantName: cdr-core-sanity-check
                  tenantProperties:
                    client-id: HIP-CDR-EHRbase-Service
                    host: '{{keycloakUrl}}'
                    realm: cdr-core-sanity-check
      responses:
        '200':
          description: ''
  /plugin/multi-tenant/service/{tenant_id}:
    delete:
      tags:
      - Multi tenant
      summary: Delete Tenant
      description: Delete Tenants
      operationId: deleteTenant
      responses:
        '200':
          description: ''
      parameters:
      - name: tenant_id
        in: path
        required: true
        schema:
          type: string
          example: '{{$guid}}'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer