获取指定时间段内在线人数统计
POST
https://saas-open.vhall.com/v3/data-center/report/online
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://saas-open.vhall.com/v3/data-center/report/online' \
--header 'platform: 15' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'webinar_id=509154312' \
--data-urlencode 'start_time=2025-06-16 12:00:01' \
--data-urlencode 'end_time=2025-06-16 18:00:01' \
--data-urlencode 'app_key=' \
--data-urlencode 'sign_type=' \
--data-urlencode 'signed_at=' \
--data-urlencode 'sign='
响应示例响应示例
{
"msg": "操作成功!",
"code": 200,
"data": {
"list": [
{
"time": "2025-06-16 17:17:00",
"total": 1
},
{
"time": "2025-06-16 17:18:00",
"total": 1
},
{
"time": "2025-06-16 17:19:00",
"total": 1
}
]
},
"request_id": "9838362165304ba49693b3cbc0d127d5.859.17506678936231889"
}
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/x-www-form-urlencoded
platform
integer
可选
默认值:
15
Body 参数application/x-www-form-urlencoded
webinar_id
string
必需
示例值:
509154312
start_time
string
必需
示例值:
2025-06-16 12:00:01
end_time
string
必需
示例值:
2025-06-16 18:00:01
app_key
string
必需
默认值:
{{app_key}}
sign_type
integer
必需
默认值:
{{sign_type}}
signed_at
integer
必需
默认值:
{{signed_at}}
sign
string
计算生成的签名值
默认值:
{{sign}}
返回响应
修改于 2025-06-23 08:39:22