获取top用户列 表
GET
/open-apis/vc/v1/reports/get_top_user
自建应用商店应用
支持最近90天内的数据查询;默认返回前10位,最多可查询前100位
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
500 | 121001 | internal error | 服务器内部错误,如果重试无效可联系管理员 |
400 | 121002 | not support | 暂不支持该功能 |
400 | 121003 | param error | 参数错误,检查参数的取值范围(请按照上面字段说明自查) |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/vc/v1/reports/get_top_user?start_time=1608888867&end_time=1608889966&limit=10&order_by=1' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"top_user_report": [
{
"id": "ou_3ec3f6a28a0d08c45d895276e8e5e19b",
"name": "name",
"user_type": 1,
"meeting_count": "100",
"meeting_duration": "3000"
}
]
}
}
请求参数
Query 参数
start_time
必需
示例值:
1608888867
end_time
必需
示例值:
1608889966
limit
必需
示例值:
10
order_by
必需
示例值:
1
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
返回响应
修改于 2023-01-28 06:15:01