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

# 切换订阅状态

> 暂停或恢复智能模式订阅

## 切换订阅状态

暂停活跃的订阅或恢复已暂停的订阅。暂停期间不收取费用，也不监控转账。

### 路径参数

<ParamField path="subscription_id" type="number" required>
  订阅 ID
</ParamField>

### 响应

返回更新后的订阅对象，包含新的 `status`。

### 示例

```bash theme={null}
curl -X POST https://api.tronrental.com/v1/smart-mode/42/toggle \
  -H "X-API-Key: your_api_key"
```

```json Response theme={null}
{
  "id": 42,
  "address": "TYourAddress...",
  "label": "Main wallet",
  "status": "paused",
  "bw_guarantee": true,
  "created_at": "2026-03-05T12:00:00Z"
}
```
