Hotglue Linked Connectors API

Create, retrieve, update, and delete linked connectors for a tenant.

Operations 4

GET /v2/{env_id}/{flow_id}/{tenant}/linkedConnectors Retrieve linked connectors #
POST /v2/{env_id}/{flow_id}/{tenant}/linkedConnectors Link a connector #
PATCH /v2/{env_id}/{flow_id}/{tenant}/linkedConnectors Update a linked connector #
DELETE /v2/{env_id}/{flow_id}/{tenant}/linkedConnectors Unlink a connector #

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/hotglue-linked-connectors-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

hotglue-linked-connectors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hotglue API V2 Connector Metadata Linked Connectors API
  description: The Hotglue API v2 enables programmatic management of embedded integrations including linked connectors, flow configurations, job execution, tenant management, and connector state for SaaS product integrations.
  version: '2.0'
  contact:
    name: Hotglue Support
    url: https://docs.hotglue.com
servers:
- url: https://api.hotglue.com
  description: Hotglue Production API
security:
- ApiKeyAuth: []
tags:
- name: Linked Connectors
  description: Create, retrieve, update, and delete linked connectors for a tenant.
paths:
  /v2/{env_id}/{flow_id}/{tenant}/linkedConnectors:
    parameters:
    - $ref: '#/components/parameters/EnvId'
    - $ref: '#/components/parameters/FlowId'
    - $ref: '#/components/parameters/Tenant'
    get:
      tags:
      - Linked Connectors
      summary: Retrieve linked connectors
      operationId: getLinkedConnectors
      parameters:
      - name: config
        in: query
        schema:
          type: boolean
        description: Request the underlying config for the linked source.
      - name: catalog
        in: query
        schema:
          type: boolean
        description: Request the catalog of available fields.
      - name: token
        in: query
        required: true
        schema:
          type: string
        description: JWT token from private signing key.
      responses:
        '200':
          description: Array of linked connector objects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LinkedConnector'
        '400':
          $ref: '#/components/responses/BadRequest'
    post:
      tags:
      - Linked Connectors
      summary: Link a connector
      operationId: linkConnector
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkConnectorRequest'
      responses:
        '200':
          $ref: '#/components/responses/EmptyOk'
        '400':
          $ref: '#/components/responses/BadRequest'
    patch:
      tags:
      - Linked Connectors
      summary: Update a linked connector
      operationId: updateLinkedConnector
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateLinkedConnectorRequest'
      responses:
        '200':
          $ref: '#/components/responses/EmptyOk'
        '400':
          $ref: '#/components/responses/BadRequest'
    delete:
      tags:
      - Linked Connectors
      summary: Unlink a connector
      operationId: unlinkConnector
      parameters:
      - name: connector_id
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          $ref: '#/components/responses/EmptyOk'
        '400':
          $ref: '#/components/responses/BadRequest'
components:
  parameters:
    Tenant:
      name: tenant
      in: path
      required: true
      schema:
        type: string
      description: Tenant identifier.
    FlowId:
      name: flow_id
      in: path
      required: true
      schema:
        type: string
      description: Flow identifier.
    EnvId:
      name: env_id
      in: path
      required: true
      schema:
        type: string
      description: Environment identifier.
  schemas:
    LinkedConnector:
      type: object
      properties:
        tap:
          type: string
        domain:
          type: string
        label:
          type: string
        tap_url:
          type: string
        auth_url:
          type: string
        icon:
          type: string
        type:
          type: string
        client_id:
          type: string
        fieldMap:
          type: object
    LinkConnectorRequest:
      type: object
      required:
      - connector
      properties:
        connector:
          type: object
          required:
          - id
          properties:
            id:
              type: string
            config:
              type: object
            symlink:
              type: object
              properties:
                id:
                  type: string
                tenant:
                  type: string
                type:
                  type: string
        schedule:
          type: object
          properties:
            schedule_expression:
              type: string
            state:
              type: string
              enum:
              - ENABLED
              - DISABLED
        field_map:
          type: object
    UpdateLinkedConnectorRequest:
      type: object
      required:
      - connector_id
      properties:
        connector_id:
          type: string
        field_map:
          type: object
        config:
          type: object
  responses:
    EmptyOk:
      description: Successful empty response.
      content:
        application/json:
          schema:
            type: object
    BadRequest:
      description: Bad request.
      content:
        application/json:
          schema:
            type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
externalDocs:
  description: Hotglue API Reference v2
  url: https://docs.hotglue.com/api-reference/v2