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
980 B
59 lines
980 B
|
1 week ago
|
meta {
|
||
|
|
name: 移除团队成员
|
||
|
|
type: http
|
||
|
|
seq: 4
|
||
|
|
tags: [
|
||
|
|
generated
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
post {
|
||
|
|
url: {{baseUrl}}/api/opportunity/team/delete
|
||
|
|
body: formUrlEncoded
|
||
|
|
auth: inherit
|
||
|
|
}
|
||
|
|
|
||
|
|
body:form-urlencoded {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
id: 748556126965989376
|
||
|
|
}
|
||
|
|
|
||
|
|
docs {
|
||
|
|
# 移除团队成员
|
||
|
|
`POST /api/opportunity/team/delete`
|
||
|
|
商机详情「团队」Tab 行操作「移除」。软删(delete_key=id 复用键),列表不再返回该行。
|
||
|
|
|
||
|
|
## 请求参数
|
||
|
|
|
||
|
|
| 参数 | 类型 | 必填 | 默认 | 说明 |
|
||
|
|
| --- | --- | --- | --- | --- |
|
||
|
|
| id | string | 是 | - | 团队成员行 ID |
|
||
|
|
|
||
|
|
## 请求示例
|
||
|
|
|
||
|
|
请求头:Authorization: Bearer {{token}}
|
||
|
|
Content-Type: application/x-www-form-urlencoded
|
||
|
|
|
||
|
|
POST /api/opportunity/team/delete
|
||
|
|
id=748556126965989376
|
||
|
|
|
||
|
|
## 响应 data 结构
|
||
|
|
|
||
|
|
null
|
||
|
|
|
||
|
|
## 响应示例
|
||
|
|
|
||
|
|
// 示例数据,字段结构以上表为准,非真实返回
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
"code": 0,
|
||
|
|
"success": true,
|
||
|
|
"message": "success",
|
||
|
|
"data": null
|
||
|
|
}
|
||
|
|
```
|
||
|
|
}
|