You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.0 KiB

6 days ago
meta {
name: 删除工作计划
type: http
seq: 4
tags: [
generated
]
}
post {
url: {{baseUrl}}/api/opportunity/workplan/delete
body: formUrlEncoded
auth: inherit
}
body:form-urlencoded {
id: 749563901099638784
}
docs {
# 删除工作计划
`POST /api/opportunity/workplan/delete`
删除工作计划行(票 12):软删 delete_key=id 复用键 + deleted=1,并写 ROW_DELETE 操作日志。目标不存在拒 66002;商机暂缓中禁写(66003)。
## 请求参数
| 参数 | 类型 | 必填 | 默认 | 说明 |
| --- | --- | --- | --- | --- |
| id | string | 是 | - | 计划行 ID |
## 请求示例
请求头:Authorization: Bearer {{token}}
Content-Type: application/x-www-form-urlencoded
POST /api/opportunity/workplan/delete
id=749563901099638784
## 响应 data 结构
null
## 响应示例
// 示例数据,字段结构以上表为准,非真实返回
```json
{
"code": 0,
"success": true,
"message": "success",
"data": null
}
```
}