meta { name: 停用推送规则 type: http seq: 6 tags: [ generated ] } post { url: {{baseUrl}}/api/rule/opp-push-rule/disable body: formUrlEncoded auth: inherit } body:form-urlencoded { id: 8001 } docs { # 停用推送规则 `POST /api/rule/opp-push-rule/disable` 停用(仅发布中可停用;停用后保留累计执行次数不新增)。 ## 请求参数 | 参数 | 类型 | 必填 | 默认 | 说明 | | --- | --- | --- | --- | --- | | id | string | 是 | - | 版本行 ID(须为发布中状态) | ## 请求示例 请求头:Authorization: Bearer {{token}} Content-Type: application/x-www-form-urlencoded POST /api/rule/opp-push-rule/disable id=8001 ## 响应 data 结构 null ## 响应示例 ```json { "code": 0, "success": true, "message": "success", "data": null } ``` }