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

# List quarantines

> List a connector's paused replication deployments

If part of a connector's replication keeps crashing, Ardent pauses (quarantines) it to protect your source. Each entry shows what was paused, why, and when.


## OpenAPI

````yaml openapi.public.json GET /v1/connectors/{connector_id}/quarantine
openapi: 3.1.0
info:
  description: >-
    Public Ardent API. Generated by scripts/export_public_openapi.py — do not
    edit by hand.
  title: Ardent API
  version: v1
servers:
  - url: https://api.tryardent.com
security: []
paths:
  /v1/connectors/{connector_id}/quarantine:
    get:
      tags:
        - v1-connectors
      summary: List Connector Quarantines Endpoint
      operationId: >-
        list_connector_quarantines_endpoint_v1_connectors__connector_id__quarantine_get
      parameters:
        - in: path
          name: connector_id
          required: true
          schema:
            title: Connector Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuarantineListResponse'
          description: Active (paused) replication deployments.
        '404':
          description: Connector not found (or not visible to the caller).
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - bearerAuth: []
components:
  schemas:
    QuarantineListResponse:
      properties:
        quarantines:
          description: Active (still paused) quarantines for the connector.
          items:
            $ref: '#/components/schemas/QuarantineRow'
          title: Quarantines
          type: array
      required:
        - quarantines
      title: QuarantineListResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    QuarantineRow:
      additionalProperties: true
      properties:
        connector_id:
          description: Connector the quarantine belongs to.
          title: Connector Id
          type: string
        deployment_name:
          anyOf:
            - type: string
            - type: 'null'
          description: Replication deployment that was paused.
          title: Deployment Name
        id:
          description: Quarantine ID.
          title: Id
          type: string
        message:
          anyOf:
            - type: string
            - type: 'null'
          description: Human-readable status message.
          title: Message
        released_at:
          anyOf:
            - type: string
            - type: 'null'
          description: When the quarantine was released. Null while paused.
          title: Released At
        released_by:
          anyOf:
            - type: string
            - type: 'null'
          description: Who released the quarantine. Null while paused.
          title: Released By
        status:
          description: '`quarantined` while paused, `released` after release.'
          title: Status
          type: string
      required:
        - id
        - connector_id
        - status
      title: QuarantineRow
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearerAuth:
      description: >-
        Ardent API key (sk-ard_live_… / sk-ard_test_…) or a dashboard session
        token.
      scheme: bearer
      type: http

````