创建外呼任务
POST
https://callapi.xfyun.cn/v1/service/v1/aicall/outbound/v1/task/create功能:面向需要灵活管控的业务场景。可以按照不同的业务维度创建多组任务、分批多次向指定任务提交号码数据,可以对外呼任务进行启动、暂停、删除等控制操作。
请求参数
Query 参数
token
string
可选
示例值:
08236d0aeeee4d5b566db5f4adc41a63
Body 参数application/json
task_name
string
任务名称
line_num
string
必需
线路号码 如果是多个,分号分隔
robot_id
string
话术id
recall_count
integer
可选
重试外呼次数 最大3次,默认0
time_recall_wait
integer
可选
重试等待时间 单位秒
time_range
array[string]
外呼时间段
time_begin
integer
必需
任务开始时间 毫秒时间戳
time_end
integer
可选
任务结束时间 毫秒时间戳
示例
{
"task_name": "测试外呼",
"line_num": "055169101407",
"robot_id": "11",
"recall_count": 1,
"time_recall_wait": 600,
"time_range": [
"09:00:00-12:00:00",
"13:00:00-17:30:00"
],
"time_begin": 1527321492000,
"time_end": 1527325092000
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
result
object
必需
task_id
string
必需
任务Id。用于任务数据提交和管理。
示例
{
"code": 0,
"message": "ok",
"result": {
"task_id": "129"
}
}
最后修改时间: 1 年前