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

# Pause Sequence Enrollments

> Stop new sequence enrollments while current recipients continue

# Pause Sequence Enrollments

Stops new subscribers from entering an active sequence. Current recipients keep
moving through the sequence until they finish.

## Request

<ParamField path="sequenceId" type="string" required>
  Sequence ID.
</ParamField>

```bash theme={null}
curl -X POST "https://api.sequenzy.com/api/v1/sequences/seq_abc123/pause-enrollments" \
  -H "Authorization: Bearer seq_live_xxx"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Sequence enrollment paused",
    "sequenceId": "seq_abc123",
    "enrollmentPaused": true
  }
  ```

  ```json 400 theme={null}
  {
    "error": "Sequence must be active to pause or resume new enrollments without freezing current recipients"
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Invalid API key"
  }
  ```

  ```json 403 theme={null}
  {
    "error": "No companies found. Create a company first using the create_company tool."
  }
  ```

  ```json 404 theme={null}
  {
    "error": "Sequence not found"
  }
  ```
</ResponseExample>
