我遇到这样一种情况,当客户端提交表单时,我希望我的系统调用多个代理,如果一个代理选择呼叫,所有呼叫都应该被丢弃我当前使用的代码调用在执行 twiml 后丢弃所有呼叫
$data = $req->input();
$action = $appUrl.'/wcc/gather-input?callId='.$data["callId"].'&visitorName='.$data["visitorName"].'&visitorMessage='.$data["visitorMessage"].'&visitorPhone='.$data["visitorPhone"];
$dial = $response->dial('', ['callerId' => '+123123123', 'timeout' => 30, 'action' => $action,"method"=>"GET"]);
$dial->number('+123123213');
$dial->number('+12313123123');
header('Content-Type: text/xml');
echo $response;