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