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

# Resume Sequence Enrollments

> Allow new subscribers to enter an active sequence again

# Resume Sequence Enrollments

Reopens new enrollment for an active sequence whose enrollment gate was paused.
Use Enable Sequence instead when the whole sequence was disabled.

## 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/resume-enrollments" \
  -H "Authorization: Bearer seq_live_xxx"
```

## Responses

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

  ```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>
