我有一个场景,呼叫者呼叫代理。呼叫者和代理已经参与。第三个呼叫者(主管)如何插话来听他们的谈话。
谢谢你,
只需使用 TwiML 拨入会议,如下所示:
<Response>
<Dial>
<Conference>conference-room</Conference>
</Dial>
</Response>
如果您希望主管听到对话但不被听到,可以使用静音属性:
muted="true"
您可以使用 API 在现有会议中添加参与者:
client.conferences(conferencesid)
.participants
.create({
from: '{put your twilio number here}',
to: `{put your supervisor number here}`,
muted: true
})
.then(participant => console.log(partipant));