Hopae, Inc. Workspace API - Activation API

Provider activation per app

Operations 5

GET /v1/apps/{id}/providers/{providerId}/activation/steps Get activation steps #
PATCH /v1/apps/{id}/providers/{providerId}/activation Enable or disable provider #
POST /v1/apps/{id}/providers/{providerId}/activation/form Submit activation form #
POST /v1/apps/{id}/providers/{providerId}/activation/documents Upload activation documents #
DELETE /v1/apps/{id}/providers/{providerId}/activation/documents/{documentId} Delete an activation document #

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/hopae-inc-workspace-api-activation-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

hopae-inc-workspace-api-activation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: hConnect Console - API Keys Workspace API - Activation API
  description: The hConnect API provides a unified interface for electronic identity verification across multiple eID providers globally.
  version: 1.0.0
  contact:
    name: hConnect Support
    url: https://www.hopae.com
    email: dev@hopae.com
servers:
- url: https://sandbox.api.hopae.com/connect
  description: Sandbox Server
tags:
- name: Workspace API - Activation
  description: Provider activation per app
paths:
  /v1/apps/{id}/providers/{providerId}/activation/steps:
    get:
      operationId: WorkspaceActivationController_getActivationSteps
      summary: Get activation steps
      description: Get computed activation steps for a specific provider
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: providerId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Activation steps retrieved successfully
        '401':
          description: Invalid API key
        '404':
          description: App not found
      tags:
      - Workspace API - Activation
      security:
      - workspace-api-key: []
  /v1/apps/{id}/providers/{providerId}/activation:
    patch:
      operationId: WorkspaceActivationController_enableProvider
      summary: Enable or disable provider
      description: Enable or disable a provider
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: providerId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WorkspaceEnableProviderBodyDto'
      responses:
        '200':
          description: Provider updated successfully
        '401':
          description: Invalid API key
        '404':
          description: App not found
      tags:
      - Workspace API - Activation
      security:
      - workspace-api-key: []
  /v1/apps/{id}/providers/{providerId}/activation/form:
    post:
      operationId: WorkspaceActivationController_submitActivationForm
      summary: Submit activation form
      description: Submit the activation request form for provider activation
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: providerId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WorkspaceSubmitActivationFormDto'
      responses:
        '201':
          description: Activation form submitted successfully
          headers:
            Location:
              description: URL of the submitted activation form.
              schema:
                type: string
                format: uri-reference
        '401':
          description: Invalid API key
        '404':
          description: App not found
      tags:
      - Workspace API - Activation
      security:
      - workspace-api-key: []
  /v1/apps/{id}/providers/{providerId}/activation/documents:
    post:
      operationId: WorkspaceActivationController_uploadDocuments
      summary: Upload activation documents
      description: Upload documents required for provider activation
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: providerId
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: Document uploaded successfully
        '401':
          description: Invalid API key
        '404':
          description: App not found
      tags:
      - Workspace API - Activation
      security:
      - workspace-api-key: []
  /v1/apps/{id}/providers/{providerId}/activation/documents/{documentId}:
    delete:
      operationId: WorkspaceActivationController_deleteDocument
      summary: Delete an activation document
      description: Remove an uploaded activation document. Deletion is blocked once the document has been processed (approved) by review.
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: providerId
        required: true
        in: path
        schema:
          type: string
      - name: documentId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Document deleted successfully
        '401':
          description: Invalid API key
        '404':
          description: App or document not found
        '409':
          description: Document has already been processed and cannot be deleted
      tags:
      - Workspace API - Activation
      security:
      - workspace-api-key: []
components:
  schemas:
    WorkspaceEnableProviderBodyDto:
      type: object
      properties:
        enabled:
          type: boolean
          description: Whether to enable or disable the provider
          example: true
      required:
      - enabled
    WorkspaceSubmitActivationFormDto:
      type: object
      properties:
        data:
          type: object
          description: Form data as key-value pairs
          example:
            legalCompanyName: Acme Corp
            registrationNumber: '12345678'
        saveToCompanyInfo:
          type: boolean
          description: If true, also persist matching fields to app companyInfo
          default: false
      required:
      - data
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: 'Basic authentication using clientId and clientSecret. For direct API calls, format the Authorization header as `Authorization: Basic <base64(clientId:clientSecret)>`. In the Mintlify playground, enter the clientId and clientSecret in the Basic Auth panel and the header is generated automatically.'
    workspaceApiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Workspace API key authentication. Pass your workspace API key as `Authorization: Bearer sk_workspace_...`.'
    consoleJwt:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Console JWT authentication. Issued by Clerk after Console login.
    workspace-api-key:
      scheme: bearer
      bearerFormat: JWT
      type: http
    app-basic:
      type: http
      scheme: basic