提交任务数据
POST
https://callapi.xfyun.cn/v1/service/v1/aicall/outbound/v1/task/insert功能:向指定任务提交号码数据,可以分多批次提交。
请求参数
Query 参数
token
string
可选
示例值:
08236d0aeeee4d5b566db5f4adc41a63
Body 参数application/json
task_id
string
任务id
call_column
array[string]
数据列映射
call_list
array [array]
必需
数据行 单次上限50条
string
可选
示例
{
"task_id": "129",
"call_column": [
"客户手机号码",
"列2",
"列3"
],
"call_list": [
[
"13000000001",
"t2",
"t3"
],
[
"13000000002",
"t2",
"t3"
]
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
result
object
必需
total
integer
号码总数
task_data_ids
array[integer]
必需
外呼数据行对应的任务数据编号,用于结果推送数据关联。
示例
{
"code": 0,
"message": "ok",
"result": {
"total": 2,
"task_data_ids": [
87,
88
]
}
}
最后修改时间: 1 年前