客户公海筛选进入任务
请求接口
/agent-api/user/{user_id}/customer_to_task/{task_id}
请求方式
GET
路由参数
参数
类型
示例
解释
必填
user_id
string
40863af8-db4a-41c6-a269-eb5bc386d97f
用户id
是
task_id
string
9403d985-c506-42e4-a189-8a0f715410e8
任务id
是
请求参数
参数 | 类型 | 示例 | 解释 | 必填 |
---|---|---|---|---|
user_id | string | 5832d184-dd53-42a0-8ace-0bf8d660f4cc | 用户id | 是 |
components | array | [] | 客户公海组件信息 | 否 |
phone | string | “13012121212” | 手机号码 可开启加密 | 否 |
created_at | array | [“2021-06-30 13:20:28”,“2021-06-30 15:20:28”] | 号码创建时间 | 否 |
operator | array | [1] | 号码运营商(1代表电信,2代表联通,3代表移动) | 否 |
encryption | bool | false | 是否加密号码(开启接口加密后有效) | 否 |
请求案例
{ "components":[ { "id":"280f5b43-0777-479d-b735-7270790aee92", //客户公海模板的ID "value":"腾讯" //客户公海模板的值 } ], "phone":"13012121212", "created_at":["2021-06-30 13:20:28","2021-06-30 13:25:28"], "operator":[1] }
1plaintext
2
3
4
5
6
7
8
9
10
11
12说明
该接口在使用前请先在代理端安设置
接口客户公海导入任务回调的URL,在处理完成后回通过此接口将信息返回给该URL
components中的id为组件的id,value为对应的值,id的值可以去创建公海模板的接口中获取
返回
{ "code": 200, "status": "success", "message": "号码导入任务信息请在回调中查收", "data": { "unique_id": "52732ea0-a1c7-44c6-a709-7dee5070ed7f" } }
1plaintext
2
3
4
5
6
7
8