多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### **客户取消呼叫** cancelVideoCall(userId: number): number #### 接口说明: 视频呼叫发起方取消呼叫,被呼叫方会接收到视频呼叫异常通知(AnyChatVideoCallEvent事件中的onReceiveVideoCallError回调通知) #### 返回值: 0—成功 其他错误代码 #### 接口参数简介: | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | userId| number | 被呼叫方用户ID | 是 | #### 示例代码: ``` // anychatSDK is the instance of sdk let status = anychatSDK.cancelVideoCall(userId);//取消呼叫 ```