Get active/inactive host reports
GET
/report/users
Reports
The Active Hosts report displays a list of meetings, participants, and meeting minutes for a specific time range, up to one month. The month should fall within the last six months.
The Inactive Hosts report pulls a list of users who were not active during a specific period of time.
Use this API to retrieve an active or inactive host report for a specified period of time. The time range for the report is limited to a month and the month should fall under the past six months.
You can specify the type of report and date range using the query parameters.
Scopes:
report:read:admin
Heavy
Prerequisites:
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.zoom.us/v2/report/users?from&to'
响应示例响应示例
{
"from": "2019-08-14",
"page_count": 1,
"page_number": 1,
"page_size": 30,
"to": "2019-09-14",
"total_meeting_minutes": 10,
"total_meetings": 2,
"total_participants": 10,
"total_records": 3,
"users": [
{
"create_time": "2019-09-13T16:20:30Z",
"dept": "",
"email": "reag12343@gmail.com",
"id": "BzBAAAAAAAfprg",
"last_client_version": "4.4.1242.0623(win)",
"last_login_time": "2019-09-13T16:21:40Z",
"meeting_minutes": 5,
"meetings": 1,
"participants": 5,
"type": 1,
"user_name": "cbcvbvcbvbc"
},
{
"create_time": "2019-07-23T00:27:34Z",
"dept": "Business",
"email": "mynewemailgoog@gmail.com",
"id": "0CAAAAA6jxcA",
"last_client_version": "4.4.1242.0623(win)",
"last_login_time": "2019-07-23T00:28:00Z",
"meeting_minutes": 0,
"meetings": 0,
"participants": 0,
"type": 1,
"user_name": "xgdzgdfg"
}
]
}
请求参数
Query 参数
type
enum<string>
可选
active
- Active hosts. inactive
- Inactive hosts.枚举值:
activeinactive
from
string <date>
必需
to
string <date>
End date.
page_size
integer
可选
<= 300
默认值:
30
page_number
integer
可选
默认值:
1
next_page_token
string
可选
返回响应
修改于 2024-04-24 09:06:48