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.
47 lines
1.0 KiB
47 lines
1.0 KiB
|
2 days ago
|
meta {
|
||
|
|
name: 可分配销售列表
|
||
|
|
type: http
|
||
|
|
seq: 6
|
||
|
|
tags: [
|
||
|
|
generated
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
get {
|
||
|
|
url: {{baseUrl}}/api/customer/transfer/750844477165273088/assignable
|
||
|
|
body: none
|
||
|
|
auth: inherit
|
||
|
|
}
|
||
|
|
|
||
|
|
docs {
|
||
|
|
# 可分配销售列表
|
||
|
|
`GET /api/customer/transfer/{id}/assignable`(本行兼作对账钥匙,勿手改)
|
||
|
|
接收总监部门(含子部门)+ 启用在职;排除发起人与总监本人。已知缺陷 D-07(P1):该接口稳定超时(E2E 实测 60s×2 ReadTimeout,交割明细分配流程被阻断,缺陷验证模式登记)。
|
||
|
|
|
||
|
|
## 请求参数
|
||
|
|
|
||
|
|
无(路径变量外无业务参数)
|
||
|
|
|
||
|
|
## 请求示例
|
||
|
|
|
||
|
|
请求头:Authorization: Bearer {{token}}
|
||
|
|
|
||
|
|
GET /api/customer/transfer/750844477165273088/assignable
|
||
|
|
|
||
|
|
## 响应 data 结构
|
||
|
|
|
||
|
|
List<AssignableUserDTO>(userId/userName/deptName;当前因 D-07 不可达)
|
||
|
|
|
||
|
|
## 响应示例
|
||
|
|
|
||
|
|
// 示例数据,字段结构以上表为准,非真实返回
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
"code": 0,
|
||
|
|
"success": true,
|
||
|
|
"message": "success",
|
||
|
|
"data": null
|
||
|
|
}
|
||
|
|
```
|
||
|
|
}
|