Skip to content
Streamkap
Esc
↑↓navigate↵open⌘Jpreview

Get Destination Config History

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

GET/destinations/{destination_id}/config-history
Authorization
AuthorizationBearer token · headerrequired
Path parameters
destination_idstringrequired
Query parameters
pageinteger

Page number (1-indexed)

min 1 · default: 1
page_sizeinteger

Items per page

min 1 · max 200 · default: 50
Responses
200

Successful Response

pageinteger

Current page number

default: 1
page_sizeinteger

Results per page

default: 10
totalinteger | null

Total number of results

Show properties
Any of:
integer
integer
null
null
has_nextboolean | null

Whether more pages exist

Show properties
Any of:
boolean
boolean
null
null
resultKCConfigChangeHistoryItem[]

List of configuration changes with AI summaries

default: []
Show properties
Array of KCConfigChangeHistoryItem
idstringrequired

Unique identifier for this change record

actionstringrequired

Action performed: 'created' or 'updated'

statusstring

Outcome of the operation: 'success' or 'failed'

default: "success"
error_messagestring | null

Masked error message if operation failed (customer-visible)

Show properties
Any of:
string
string
null
null
timestampstring<date-time>required

When the change occurred

connector_namestringrequired

Connector name

connector_typestringrequired

Connector type (e.g., postgres, mysql)

user_idstring | null

ID of the user who made the change (None for system/background operations)

Show properties
Any of:
string
string
null
null
user_emailstring | null

Email of the user who made the change (None for system/background operations)

Show properties
Any of:
string
string
null
null
ai_summaryKCConfigChangeSummaryrequired

AI-generated summary of a configuration change.

Show properties
summarystringrequired

Human-readable summary of the configuration change

422

Validation Error

detailValidationError[]
Show properties
Array of ValidationError
locstring | integer[]required
Show properties
Array of string | integer
Any of:
string
string
integer
integer
msgstringrequired
typestringrequired
inputany
ctxobject
Request
curl -X GET 'https://api.streamkap.com/destinations/string/config-history' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
{
  "page": 1,
  "page_size": 10,
  "total": 0,
  "has_next": true,
  "result": []
}