> ## 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.

# Release a quarantine

> Resume a paused replication deployment

<Warning>
  Fix the underlying cause before releasing, or it will likely quarantine again.
</Warning>


## OpenAPI

````yaml openapi.public.json POST /v1/connectors/{connector_id}/quarantine/{quarantine_id}/release
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/{quarantine_id}/release:
    post:
      tags:
        - v1-connectors
      summary: Release Quarantine Endpoint
      operationId: >-
        release_quarantine_endpoint_v1_connectors__connector_id__quarantine__quarantine_id__release_post
      parameters:
        - in: path
          name: connector_id
          required: true
          schema:
            title: Connector Id
            type: string
        - in: path
          name: quarantine_id
          required: true
          schema:
            title: Quarantine Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuarantineRow'
          description: The released quarantine entry.
        '403':
          description: No update permission on this connector.
        '404':
          description: Connector or quarantine entry not found.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - bearerAuth: []
components:
  schemas:
    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
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      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

````