- readme
- 商机
- 线索
- 公共(通用域)
- 公共(支撑域)
- AI外呼
- 智能外呼
- 人群管理
- 外呼线索
- 外呼账号
- 智能拓客
- 回调接口(百应调我们)POST
- 运营后台
- AI 云店(cloud-shop)
- RPA
- 开放接口
- 视频助手
- 账号密码登录POST
- 未命名接口GET
创建任务
POST
https://micro-gfyx-api.b2btst.com/v1/outbound/task/create
最后修改时间:2024-04-15 06:37:51
责任人:炳为
请求参数
Header 参数
access_token
string
必需
示例值:
vTAa8Efh+nFNbVwglrUAfKVqx+dMf30s+rVrsFE6jNDQlQ2Gqia1EBKmi0zcsMEm
Body 参数application/json
task_name
string
任务名称
task_type
integer
任务类型
start_date
string
任务开始日期(定时任务必填)格式2019-08-08 精确到天
robot_def_id
integer
话术id
user_phone_ids
array[integer]
线路id
seat_num
integer
坐席数
repeat_call_cnt
integer
重播次数
push_user_ids
array[integer]
推送用户id
task_id
integer
任务id
示例
{
"task_id": "任务id", // 任务id ,非必填
"task_name":"任务名称",// 任务名称
"task_type":1, // 任务类型, 1-定时,2-手动;当选择定时任务时,start_date为必传
"start_date":"2023-11-02",// 任务开始日期(定时任务必填)格式2019-08-08 精确到天,
"robot_def_id":497, // 话术id, 从话术列表接口中获取,
"user_phone_ids":[123], // 线路id,从线路接口获取,目前只能支持单选
"concurrency_quota":1, // 坐席数,数字,默认为 1 ,最大数字限制从获取坐席接口获取
"repeat_call_cnt":1, // 重播次数,默认为 0 ,最大为 5 次,
"push_user_ids":[1,2] // 推送用户id,从用户
}
返回响应
🟢200成功
application/json
Body
data
object
必需
task_id
integer
任务id
error_code
integer
必需
message
string
必需
success
boolean
必需
示例
{
"data": {
"task_id": 1
},
"error_code": 200,
"message": "访问成功",
"success": true
}
修改于 2024-04-15 06:37:51