---
title: "List Connector Quarantines Endpoint"
method: GET
path: "/v1/connectors/{connector_id}/quarantine"
tags: ["v1-connectors"]
---

# List Connector Quarantines Endpoint

`GET /v1/connectors/{connector_id}/quarantine`

List active quarantine rows for a connector.

Returns rows where status='quarantined'. Released rows are transient
(deleted by the monitor after scale-up) and are not listed here.

## Path parameters

- `connector_id` string, required

## Response `200`

Active (paused) replication deployments.

- QuarantineListResponse — Spec-only wrapper for GET /{connector_id}/quarantine.
  - `quarantines` QuarantineRow[], required — Active (still paused) quarantines for the connector.
    - `id` string, required — Quarantine ID.
    - `connector_id` string, required — Connector the quarantine belongs to.
    - `deployment_name` string, nullable — Replication deployment that was paused.
    - `status` string, required — `quarantined` while paused, `released` after release.
    - `released_at` string, nullable — When the quarantine was released. Null while paused.
    - `released_by` string, nullable — Who released the quarantine. Null while paused.
    - `message` string, nullable — Human-readable status message.

## Other responses

- `404` — Connector not found (or not visible to the caller).
- `422` — Validation Error

---

[API](https://skmtc.net/tryardent/apis/fastapi.md) · [All operations](https://skmtc.net/tryardent/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryardent/fastapi/versions/f92d8d54bae2/schema)
