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

# Get Destination Config History

> Retrieve configuration change history for a destination with AI-generated summaries.



## OpenAPI

````yaml /openapi/openapi.json get /destinations/{destination_id}/config-history
openapi: 3.1.0
info:
  title: Streamkap REST API
  description: >-
    The Streamkap REST API allows you to programmatically manage your CDC
    pipelines, sources, destinations, transforms, and more.


    Authenticate using a bearer token obtained from the [Access
    Token](/api-reference/auth/access-token) endpoint with your API client
    credentials.
  contact:
    name: Streamkap Support
    url: https://streamkap.com/
    email: support@streamkap.com
  license:
    name: Proprietary
  version: 2.0.0
servers:
  - url: https://api.streamkap.com
    description: Production
security: []
tags:
  - name: Alerts
    description: Manage alert subscribers, preferences, and notification credentials.
  - name: Authentication
    description: Obtain and refresh access tokens, manage client credentials and roles.
  - name: Billing
    description: Retrieve usage metrics, summaries, and export billing data.
  - name: Consumer Groups
    description: List, inspect, and reset Kafka consumer group offsets.
  - name: Dashboard
    description: Retrieve organisation-level statistics and overview data.
  - name: Destinations
    description: Create, configure, and manage data destinations and their lifecycle.
  - name: Kafka Access
    description: Manage Kafka users and their access permissions.
  - name: Logs
    description: Query and summarise system logs.
  - name: Pipelines
    description: Create, configure, and manage CDC pipelines and their lifecycle.
  - name: Project Keys
    description: Manage project keys that bundle API credentials and optional Kafka access.
  - name: Schema Registry
    description: Browse schema subjects, versions, and retrieve schema definitions.
  - name: Services
    description: View and switch service metadata.
  - name: Sources
    description: >-
      Create, configure, and manage data sources, snapshots, and their
      lifecycle.
  - name: Tags
    description: Create, update, and manage resource tags for organisation.
  - name: Topics
    description: Browse topic details, statistics, configurations, metrics, and messages.
  - name: Transforms
    description: >-
      Create, deploy, and manage data transforms, unit tests, and implementation
      details.
paths:
  /destinations/{destination_id}/config-history:
    get:
      tags:
        - Destinations
      summary: Get Destination Config History
      description: >-
        Retrieve configuration change history for a destination with
        AI-generated summaries.
      operationId: getDestinationConfigHistory
      parameters:
        - name: destination_id
          in: path
          required: true
          schema:
            type: string
            title: Destination Id
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number (1-indexed)
            default: 1
            title: Page
          description: Page number (1-indexed)
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            description: Items per page
            default: 50
            title: Page Size
          description: Items per page
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KCConfigChangeHistoryRes'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - FronteggHTTPAuthentication: []
components:
  schemas:
    KCConfigChangeHistoryRes:
      properties:
        page:
          type: integer
          title: Page
          description: Current page number
          default: 1
        page_size:
          type: integer
          title: Page Size
          description: Results per page
          default: 10
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
          description: Total number of results
        has_next:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Next
          description: Whether more pages exist
        result:
          items:
            $ref: '#/components/schemas/KCConfigChangeHistoryItem'
          type: array
          title: Result
          description: List of configuration changes with AI summaries
          default: []
      additionalProperties: true
      type: object
      title: KCConfigChangeHistoryRes
      description: >-
        Paginated response model for configuration change history endpoint.


        Uses standard pagination pattern: page, page_size, total, has_next,
        result.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    KCConfigChangeHistoryItem:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for this change record
        action:
          type: string
          title: Action
          description: 'Action performed: ''created'' or ''updated'''
        status:
          type: string
          title: Status
          description: 'Outcome of the operation: ''success'' or ''failed'''
          default: success
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Masked error message if operation failed (customer-visible)
        timestamp:
          type: string
          format: date-time
          title: Timestamp
          description: When the change occurred
        connector_name:
          type: string
          title: Connector Name
          description: Connector name
        connector_type:
          type: string
          title: Connector Type
          description: Connector type (e.g., postgres, mysql)
        user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: User Id
          description: >-
            ID of the user who made the change (None for system/background
            operations)
        user_email:
          anyOf:
            - type: string
            - type: 'null'
          title: User Email
          description: >-
            Email of the user who made the change (None for system/background
            operations)
        ai_summary:
          $ref: '#/components/schemas/KCConfigChangeSummary'
          description: AI-generated summary of the change
      additionalProperties: true
      type: object
      required:
        - id
        - action
        - timestamp
        - connector_name
        - connector_type
        - ai_summary
      title: KCConfigChangeHistoryItem
      description: |-
        Single configuration change history item for API responses.

        This is customer-visible data with AI-generated summaries.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    KCConfigChangeSummary:
      properties:
        summary:
          type: string
          title: Summary
          description: Human-readable summary of the configuration change
      type: object
      required:
        - summary
      title: KCConfigChangeSummary
      description: AI-generated summary of a configuration change.
  securitySchemes:
    FronteggHTTPAuthentication:
      type: http
      scheme: bearer

````