> ## Documentation Index
> Fetch the complete documentation index at: https://developers.askparable.com/llms.txt
> Use this file to discover all available pages before exploring further.

# tenantConnectorTaps

> GET /api/workspace-connector-taps
List the workspace's connector taps. When tenantConnectorId is supplied
results are scoped to that connector; otherwise all taps for the workspace
are returned.
Paginated via limit/offset. Default limit: 250, max limit: 250.
The declared max is the single source of truth for the server clamp
and the generated SDKs' auto-paginating *_all variants.
Ordering is stable (created_at desc, id) so callers can page until a
short page signals exhaustion.



## OpenAPI

````yaml /api-reference/openapi.json get /api/tenant-connector-taps/tenant-connector-taps
openapi: 3.0.3
info:
  title: Parable API
  description: >-
    The REST API for your Parable workspace: manage connectors and taps, explore
    your data catalog, upload artifacts, and administer users and roles.
  version: v1
servers:
  - url: https://api.askparable.com
    description: Production
security: []
paths:
  /api/tenant-connector-taps/tenant-connector-taps:
    get:
      tags:
        - connector-taps
      summary: tenantConnectorTaps
      description: >-
        GET /api/workspace-connector-taps

        List the workspace's connector taps. When tenantConnectorId is supplied

        results are scoped to that connector; otherwise all taps for the
        workspace

        are returned.

        Paginated via limit/offset. Default limit: 250, max limit: 250.

        The declared max is the single source of truth for the server clamp

        and the generated SDKs' auto-paginating *_all variants.

        Ordering is stable (created_at desc, id) so callers can page until a

        short page signals exhaustion.
      operationId: TenantConnectorTapsTenantConnectorTapsHandler
      parameters:
        - description: >-
            Workspace slug. Overrides subdomain-based workspace resolution when
            provided.
          in: header
          name: X-Tenant
          required: false
          schema:
            example: acme
            type: string
        - description: Optional request correlation ID echoed back in the response.
          in: header
          name: X-Request-ID
          required: false
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            format: uuid
            type: string
        - in: query
          name: tenantConnectorId
          required: false
          schema:
            description: UUID v4 with automatic base62 encoding for client-facing APIs
            type: string
        - in: query
          name: limit
          required: false
          schema:
            format: double
            maximum: 250
            type: number
        - in: query
          name: offset
          required: false
          schema:
            format: double
            type: number
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    items:
                      $ref: '#/components/schemas/TenantConnectorTapInfo'
                    type: array
                  links:
                    $ref: '#/components/schemas/ResponseLinks'
                  meta:
                    $ref: '#/components/schemas/ResponseMeta'
                required:
                  - data
                  - meta
                type: object
          description: Successful response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Bad request
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Internal server error
      security:
        - bearerAuth: []
components:
  schemas:
    TenantConnectorTapInfo:
      description: >-
        Per-workspace tap configuration. Either narrows a platform
        `ConnectorTap`'s

        output schema for this workspace (override case) or stands in for an

        artifact-derived tap (artifact case). See EDR-0021 for the model.
      properties:
        artifactId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        canonicalPersonSource:
          description: >-
            Whether this tap is one of the Workspace's canonical person/identity

            sources. Any number of active taps may carry the designation;
            ordering

            among canonical sources is by `createdAt`, earlier wins.
          type: boolean
        config:
          description: A JSON object represented as a string
          type: object
        connectorTapId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        createdAt:
          description: ISO8601 datetime string
          type: string
        description:
          type: string
        enabled:
          type: boolean
        enabledSince:
          description: >-
            Start of the current uninterrupted enabled period. Null when
            disabled or

            when the enabled period predates tracking.
          type: string
        id:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        kind:
          $ref: '#/components/schemas/TenantConnectorTapKindEnum'
          description: >-
            Discriminates override / custom / artifact (EDR-0021). Readers use
            it to

            pick effective-schema semantics: OVERRIDE inherits platform
            directives,

            CUSTOM / ARTIFACT outputSchema is self-authoritative.
        name:
          description: An objects name
          type: string
        outputSchema:
          description: A Parable Schema in JSON
          type: object
        tenantConnectorId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        updatedAt:
          description: ISO8601 datetime string
          type: string
      required:
        - id
        - createdAt
        - updatedAt
        - tenantConnectorId
        - connectorTapId
        - name
        - enabled
        - kind
        - outputSchema
        - canonicalPersonSource
      type: object
    ResponseLinks:
      properties:
        first:
          nullable: true
          type: string
        last:
          nullable: true
          type: string
        next:
          nullable: true
          type: string
        prev:
          nullable: true
          type: string
      type: object
    ResponseMeta:
      properties:
        requestId:
          description: Unique identifier for the request
          type: string
        totalCount:
          description: Total count of items for paginated responses
          nullable: true
          type: integer
      required:
        - requestId
      type: object
    Error:
      properties:
        error:
          type: string
      type: object
    TenantConnectorTapKindEnum:
      description: >-
        Discriminates the three TenantConnectorTap cases (EDR-0021 / CFGR-8).
        The

        kind decides how the effective schema is resolved for promote metadata:

        OVERRIDE merges platform directives onto the workspace overlay; CUSTOM
        and

        ARTIFACT are self-authoritative (the workspace outputSchema carries its
        own

        `x-transform*` directives).
      enum:
        - override
        - custom
        - artifact
      type: string
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````