meta { name: 复制查重规则 type: http seq: 5 tags: [ generated ] } post { url: {{baseUrl}}/api/rule/opp-dedup-rule/copy body: formUrlEncoded auth: inherit } body:form-urlencoded { id: 8101 } docs { # 复制查重规则 `POST /api/rule/opp-dedup-rule/copy` 复制规则(独立新规则:新编码 + V1.0 草稿,向导配置随复制)。 ## 请求参数 | 参数 | 类型 | 必填 | 默认 | 说明 | | --- | --- | --- | --- | --- | | id | string | 是 | - | 版本行 ID(任意版本均可作复制源) | ## 请求示例 请求头:Authorization: Bearer {{token}} Content-Type: application/x-www-form-urlencoded POST /api/rule/opp-dedup-rule/copy id=8101 ## 响应 data 结构 string — 新规则版本行 ID(Long 序列化为 string) ## 响应示例 ```json { "code": 0, "success": true, "message": "success", "data": "8102" } ``` }