企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### **接受视频呼叫** acceptVideoCall(userId: number): number #### 接口说明: 接受呼叫请求,双方将会收到视频通话开始通知(AnyChatVideoCallEvent事件中的onReceiveVideoCallStart回调通知) #### 返回值: 0—成功 其他错误代码 #### 接口参数简介: | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | userId| number | 呼叫方用户ID | 是 | #### 示例代码: ``` // anychatSDK is the instance of sdk let status = anychatSDK.acceptVideoCall(userId);//接受呼叫 ```