回拨话单推送
- 回拨电话通话结束,飞语云服务器会向开发者开发者服务器推送回拨每一路的通话信息
请求URL:
- 开发者服务器提供的HTTP(S)
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型:application/x-www-form-urlencoded |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
currentTime | 是 | long | 访问请求的时间戳 |
signature | 是 | string | 加密字符串,大写,MD5(appId+appToken) |
appId | 是 | string | 应用Id |
callId | 是 | string | 当前结束通话的呼叫id |
isRecorded | 是 | string | 是否录音,Y:录音,N:不录音 |
isDisplayed | 是 | string | 是否显号:Y:显号,N:不显号 |
startTime | 是 | long | 通话开始时间 |
endTime | 是 | long | 通话结束时间 |
hangupReason | 是 | string | 中断原因 |
返回示例:
正确时返回:
{
"resultCode": 0,
"resultMsg": "succeed"
}
错误时返回:
{
"resultCode": -1,
"resultMsg": "failed"
}