アウトバウンドタスク

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"
    }
  ]
}'