在会议中添加电话号码

时间:2015-09-08 14:21:34

标签: api voice sinch conferencing

因此,我尝试使用Sinch API来制作调用应用程序。 我正在使用它来召开电话会议,但是这个电话只发给第一个人并且播放的消息是“#34;你是这个会议中唯一的人”#34;一段时间后挂断了。 Documentation写道,可以多次使用相同的API连接同一会议室中的多个电话号码。但无法完成任务。还联系了支持部门但尚未回答。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

Waquar以下作品非常适合我打电话随时添加我的号码并给我打个电话+15612600684 https://callingapi.sinch.com/v1/callouts 首先

{
    "method" : "conferenceCallout",
    "conferenceCallout" :
    {
        "cli" : "46000000000",
        "destination" : { "type" : "number", "endpoint" : "+14154251021" },
        "domain" : "pstn",
        "custom" : "customData",
        "locale" : "en-US",
        "greeting" : "Welcome to my conference",
        "conferenceId" : "coolconf",
        "enableDice" : false
    }
}

然后

{
    "method" : "conferenceCallout",
    "conferenceCallout" :
    {
        "cli" : "46000000000",
        "destination" : { "type" : "number", "endpoint" : "+15612600684" },
        "domain" : "pstn",
        "custom" : "customData",
        "locale" : "en-US",
        "greeting" : "Welcome to my conference",
        "conferenceId" : "coolconf",
        "enableDice" : false
    }
}
相关问题