cookieLM

Updated 打电话接口 (markdown)

### 1. 通话
\ No newline at end of file
### 1. 通话接口
接口地址:/v1/app/call/{targetId}?access_token=token
Request Method:GET
Request params:
|参数名 |是否必须 |说明 |参数类型 |
|--------------|----------|--------|----------|
|targetId |是 |被叫的用户id |Long |
|access_token |是 |系统当前登录用户的token |String |
Response Body:
成功建立通话连接:
```
{
"data": {
"callSid": "16090510160925480001030600243044"
}
},
"returnCode": 200,
"returnMsg": "success"
}
```
系统异常:
```
{
"returnCode": 500,
"returnMsg": ""
}
```
主叫或被叫未绑定电话号:
```
{
"returnCode": 400,
"returnMsg": "账号未绑定手机号,请手动拨打010-56469588!"
}
```
无通讯子账户:
```
{
"returnCode": 400,
"returnMsg": "无通讯子账户,请联系管理员!"
}
```
用户信息有误:
```
{
"returnCode": 400,
"returnMsg": "用户信息有误!"
}
```
用户信息有误:
```
{
"returnCode": 400,
"returnMsg": "用户信息有误!"
}
```
用户信息有误:
```
{
"returnCode": 400,
"returnMsg": "用户信息有误!"
}
```
### 2. 客服呼叫
### 3. 取消呼叫
### 4. 获取通话状态
\ No newline at end of file
... ...