아웃바운드 작업
Append phone numbers
PUT
/openapi/task/{taskId}/append_phone요청
매개변수
taskIdinteger필수경로 매개변수 · Task ID
요청 본문
itemsobject[]필수
[].extraobject
Variables associated with the phone number; empty if none
姓名string
性别string
[].numberstring필수
Phone number
응답
200 OK
응답 본문 없음
샘플 코드
curl -X PUT 'https://openapi.voicefox.ai/openapi/task/{taskId}/append_phone' \
-H 'Authorization: Bearer <YOUR_TOKEN>' \
-H 'Content-Type: application/json' \
-d '{
"items": [
{
"extra": {
"姓名": "string",
"性别": "string"
},
"number": "string"
}
]
}'