> ## 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.

# connectorConfigurationHistory

> GET /api/connectors/{tenantConnectorId}/config-history
All the configuration history for a specific workspace connector instance



## OpenAPI

````yaml /api-reference/openapi.json get /api/connectors/{tenantConnectorId}/config-history
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/connectors/{tenantConnectorId}/config-history:
    get:
      tags:
        - connectors
      summary: connectorConfigurationHistory
      description: >-
        GET /api/connectors/{tenantConnectorId}/config-history

        All the configuration history for a specific workspace connector
        instance
      operationId: ConnectorsConnectorConfigurationHistoryHandler
      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
        - description: tenantConnectorId parameter
          in: path
          name: tenantConnectorId
          required: true
          schema:
            description: UUID v4 with automatic base62 encoding for client-facing APIs
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    items:
                      $ref: '#/components/schemas/TenantConnectorConfigurationHistory'
                    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:
    TenantConnectorConfigurationHistory:
      properties:
        authenticationConfig:
          description: A Parable Schema in JSON
          type: object
        authenticationStrategyId:
          description: >-
            Pull auth strategy used for this attempt. Null for STREAMING
            connectors,

            which report inboundAuthStrategyId instead.
          type: string
        connectorId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        createdAt:
          description: ISO8601 datetime string
          type: string
        createdBy:
          description: UUID v4 string as base62
          type: string
        groupingId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        id:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        inboundAuthStrategyId:
          description: >-
            Inbound auth strategy used for this attempt (STREAMING connectors
            only).
          type: string
        ingestionConfig:
          description: A Parable Schema in JSON
          type: object
        result:
          description: A JSON object represented as a string
          type: object
        success:
          type: boolean
        tenantConnectorId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        tenantId:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        updatedAt:
          description: ISO8601 datetime string
          type: string
        updatedBy:
          description: UUID v4 string as base62
          type: string
      required:
        - id
        - createdAt
        - createdBy
        - updatedAt
        - updatedBy
        - tenantId
        - groupingId
        - tenantConnectorId
        - connectorId
        - authenticationConfig
        - ingestionConfig
        - success
        - result
      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
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````