meta { name: 删除查重规则 type: http seq: 7 tags: [ generated ] } post { url: {{baseUrl}}/api/rule/opp-dedup-rule/delete body: formUrlEncoded auth: inherit } body:form-urlencoded { id: 8103 } docs { # 删除查重规则 `POST /api/rule/opp-dedup-rule/delete` 删除(仅草稿可删)。 ## 请求参数 | 参数 | 类型 | 必填 | 默认 | 说明 | | --- | --- | --- | --- | --- | | id | string | 是 | - | 版本行 ID(须为草稿状态) | ## 请求示例 请求头:Authorization: Bearer {{token}} Content-Type: application/x-www-form-urlencoded POST /api/rule/opp-dedup-rule/delete id=8103 ## 响应 data 结构 null ## 响应示例 ```json { "code": 0, "success": true, "message": "success", "data": null } ``` }