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.
 
 
 
 
 

58 lines
1.2 KiB

meta {
name: 确认执行导入
type: http
seq: 2
tags: [
generated
]
}
post {
url: {{baseUrl}}/api/customer/contact/import/confirm?taskId=753314959143731200
body: none
auth: inherit
}
params:query {
taskId: 753314959143731200
}
docs {
# 确认执行导入
`POST /api/customer/contact/import/confirm`(本行兼作对账钥匙,勿手改)
待确认 → 处理中 + 触发异步执行(行级部分成功);重复确认 67024 阻断。
## 请求参数
| 参数 | 类型 | 必填 | 默认 | 说明 |
| --- | --- | --- | --- | --- |
| taskId | string | 是 | - | 预校验返回的任务ID(查询参数) |
## 请求示例
请求头:Authorization: Bearer {{token}}
POST /api/customer/contact/import/confirm?taskId=753314959143731200
## 响应 data 结构
| 字段 | 类型 | 说明 |
| --- | --- | --- |
| (data 本体) | string | 任务ID(Long 序列化为 string) |
## 错误码
- 67024 联系人导入任务状态不允许(重复确认/结果未生成)
## 响应示例
// 示例数据(E2E 实测真值),字段结构以上表为准
```json
{
"code": 0,
"success": true,
"message": "success",
"data": "753314959143731200"
}
```
}