Skip to main content
POST
/
topics
/
bulk
/
stop-snapshot
Bulk Stop Snapshot Topics
curl --request POST \
  --url https://api.streamkap.com/topics/bulk/stop-snapshot \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "topic_ids": [
    "<string>"
  ]
}
'
{
  "results": [
    {
      "id": "<string>",
      "success": true,
      "message": "<string>",
      "data": {}
    }
  ],
  "summary": {
    "total": 123,
    "succeeded": 123,
    "failed": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request model for bulk stop-snapshot operations at the topic level.

Accepts topic DB IDs to identify the source connectors whose snapshots should be stopped. Because a snapshot runs at the source level, stopping affects all topics for that source, not just the selected ones.

topic_ids
string[]
required

List of topic DB IDs (_id) to operate on.

Required array length: 1 - 500 elements

Response

Successful Response

Response model for bulk operations.

results
BulkOperationResult · object[]
required

Detailed results for each entity

summary
BulkOperationSummary · object
required

Summary statistics