呼出任务
追加号码
PUT
/openapi/task/{taskId}/append_phone请求
参数
taskIdinteger必需路径参数 · 任务ID
请求体
itemsobject[]必需
[].extraobject
号码对应的变量,没有则为空
姓名string
性别string
[].numberstring必需
号码
响应
200 OK
无响应体
示例代码
curl -X PUT 'https://openapi.voicefox.cn/openapi/task/{taskId}/append_phone' \
-H 'Authorization: Bearer <YOUR_TOKEN>' \
-H 'Content-Type: application/json' \
-d '{
"items": [
{
"extra": {
"姓名": "string",
"性别": "string"
},
"number": "string"
}
]
}'