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.
 
 
 
 
 

99 lines
2.3 KiB

meta {
name: 交接详情
type: http
seq: 3
tags: [
generated
]
}
get {
url: {{baseUrl}}/api/customer/transfer/750844477165273088
body: none
auth: inherit
}
docs {
# 交接详情
`GET /api/customer/transfer/{id}`(本行兼作对账钥匙,勿手改)
单头 + 明细(客户名实时回显,进度 = assignedCount/totalCount)。
## 请求参数
无(路径变量外无业务参数)
## 请求示例
请求头:Authorization: Bearer {{token}}
GET /api/customer/transfer/750844477165273088
## 响应 data 结构
| 字段 | 类型 | 示例值(E2E 实测) |
| --- | --- | --- |
| id | string | 750875407179317248 |
| transferNo | string | JG202609040003 |
| fromUserName | string | 曾偲青 |
| toDirectorName | string | 罗伟健 |
| reason | string | resign |
| remark | string | e2e 票05 |
| totalCount | number | 3 |
| assignedCount | number | 0 |
| status | number | 0 |
| createTime | string | 2026-09-04 00:30:47 |
| details | array | [{"id": "750875407271591936", "customerId": "750… |
## 错误码
- 67002 不存在
## 响应示例
// 示例数据(E2E 实测真值),字段结构以上表为准
```json
{
"code": 0,
"success": true,
"message": "success",
"data": {
"id": "750875407179317248",
"transferNo": "JG202609040003",
"fromUserName": "曾偲青",
"toDirectorName": "罗伟健",
"reason": "resign",
"remark": "e2e 票05",
"totalCount": 3,
"assignedCount": 0,
"status": 0,
"createTime": "2026-09-04 00:30:47",
"details": [
{
"id": "750875407271591936",
"customerId": "750844484425613312",
"customerName": "e2c-交割-甲",
"assignStatus": 0,
"assignUserName": null,
"assignTime": null
},
{
"id": "750875407451947008",
"customerId": "750844485444829184",
"customerName": "e2c-交割-乙",
"assignStatus": 0,
"assignUserName": null,
"assignTime": null
},
{
"id": "750875407632302080",
"customerId": "750844486468239360",
"customerName": "e2c-交割-丙",
"assignStatus": 0,
"assignUserName": null,
"assignTime": null
}
]
}
}
```
}