---
title: "Bulk Stop Snapshot Topics"
method: POST
path: "/topics/bulk/stop-snapshot"
tags: ["Topics"]
---

# Bulk Stop Snapshot Topics

`POST /topics/bulk/stop-snapshot`

Stop snapshot for sources identified by the selected topics.

Accepts topic DB IDs, resolves them to their source connectors, and stops
any running snapshots on those sources.

Note: Because snapshots run at the source level, stopping affects all topics
for that source, not just the selected ones.

Automatically detects the running snapshot type (incremental or blocking)
and uses the appropriate cancellation method:
- Incremental: Cancels via signal table, streaming continues.
- Blocking: Restarts the connector, streaming resumes after restart.

Returns partial success results - continues processing even if individual stop operations fail.

## Request body

- BulkTopicStopSnapshotReq — 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.

## Response `200`

Successful Response

- BulkOperationRes — Response model for bulk operations.
  - `results` BulkOperationResult[], required — Detailed results for each entity
    - `id` string, required — Entity ID
    - `success` boolean, required — Whether the operation succeeded
    - `message` string, nullable — Success message or error details
    - `data` object, nullable — Optional data returned by the operation
  - `summary` BulkOperationSummary, required — Summary statistics for a bulk operation.
    - `total` integer, required — Total number of entities processed
    - `succeeded` integer, required — Number of successful operations
    - `failed` integer, required — Number of failed operations

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/streamkap/apis/streamkap-rest-api.md) · [All operations](https://skmtc.net/streamkap/apis/streamkap-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/streamkap/streamkap-rest-api/versions/8aea6143d003/schema)
