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

# Disable Sequence

> Pause a sequence and hold workflow execution

# Disable Sequence

Pauses a sequence, blocks new enrollments, and holds workflow execution.
Existing subscribers stay at their current step until the sequence is enabled
again.

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

## Responses

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

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