云会议室号单次呼叫详情统计
默认接口请求频率限制:20次/秒。
REST URL
POST https://sdk.xylink.com/api/rest/edu/external/statistics/meeting/single/call/info/v1?enterpriseId=分配的企业id
请求参数说明
参数 | 参数类型 | 参数位置 | 必须 | 默认值 | 说明 |
statisTime | String | Body | 是 | 无 | 天:yyyy-MM-dd 周:yyyy-MM-dd 月:yyyy-MM |
timeType | Integer | Body | 是 | 无 | 1-天, 2-周, 3-月 |
cloudMeetingNo | String | Body | 是 | 无 | 云会议室号 |
start | Integer | Body | 是 | 无 | 分页开始条数(如0,10,20) |
size | Integer | Body | 否 | 10 | 分页大小 |
请求消息体示例(Json)
{
"statisTime":"2022-04", //天:yyyy-MM-dd 周:yyyy-MM-dd 月:yyyy-MM
"timeType":3, //1-天, 2-周, 3-月
"cloudMeetingNo":"23762086",
"start":1,
"size":10,
}
时间只支持天/周/月维度查询,如果是周查询维度,则指定一周内任意日期都行
返回结果示例:备注:时长单位都统一默认为毫秒
成功时返回结果数据,失败时返回小鱼RESTAPI错误码
{
"totalRow": "do sit in",
"rows": [
{
"meetingId": "ut consectetur",
"deviceId": "ut ni",
"callNumber": "fugiat",
"joinTimeBegin": 15591330.02840887,
"joinTimeEnd": -17206725.112680227,
"callDuration": -28438780.08387959,
"liveId": "magna reprehenderit",
"liveDuration": -373170.41743820906,
"recordDuration": 23070676.79748434,
"whiteboardDuration": 51042191.27677232,
"contentShareDuration": -63700693.32778234,
"annotationDuration": 97735986.32788464
},
{
"meetingId": "ut",
"deviceId": "dolore ut elit",
"callNumber": "Ut Lorem incididunt",
"joinTimeBegin": -70117050.0517044,
"joinTimeEnd": 9682605.522797167,
"callDuration": -37069790.43608936,
"liveId": "Ut",
"liveDuration": 90966556.10200831,
"recordDuration": -47202368.78864998,
"whiteboardDuration": -3183633.7926648706,
"contentShareDuration": 78652947.89513943,
"annotationDuration": -28156837.330795616
}
]
}
返回参数说明
参数名称 | 说明 |
totalRow | 区域码 |
rows | 区域名称 |
meetingId | 互动课程 |
deviceId | 直播课程总数 |
callNumber | 点播课程总数 |
joinTimeBegin | 直播观看人次 |
joinTimeEnd | 点播观看人次 |
callDuration | 备课总讲次数 |
liveId | 听评课次数 |
liveDuration | 课程互动时长 |
recordDuration | 课程录制时长 |
whiteboardDuration | 课程直播观看时长(暂时不返回该数据) |
contentShareDuration | 课程回放时长(暂时不返回该数据) |
annotationDuration | 互动课程的点播时长 |