Last Updated on : 2023-06-21 07:12:53download
Query meeting reservations within a period of time, including the total number of meetings and participants.
GET: /v1.0/iot-03/meeting-reservations/daily-reports
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
req | ReportQueryReq | query | true | The request of querying the report. |
Description of req
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
start_time | Long | true | The start time. | |
end_time | Long | true | The end time. | |
page_size | Integer | false | The number of entries returned on each page. |
Parameter name | Type | Description |
---|---|---|
result | CursorPage |
Description of result
Parameter name | Type | Description |
---|---|---|
last_row_key | String | The cursor of the previous page. You can scroll and query the items. |
list | List | |
has_more | Boolean | Whether there is a next page of results. |
Description of list
Parameter name | Type | Description |
---|---|---|
report_time | Long | The reporting time. |
meeting_total | Integer | The total number of meetings. |
participants_total | Integer | The total number of participants. |
recipient_total | Integer | The total number of persons who accept the meetings. |
sign_total | Integer | The total number of sign-in persons. |
total_time | Long | The total duration of meetings. |
release_time | Long | The time when a meeting is released. |
release_total | Integer | The number of times for which the meetings are released. |
rseize_total | Integer | The number of times for which the meetings are preempted. |
rseize_time | Long | The duration for which the meetings are preempted. |
reuse_time | Long | The duration for which a meeting room is reused after release. |
reuse_rate | String | The reuse rate of meeting rooms. The calculation method is: the re-scheduled duration after release ÷ total release time (including active termination and device release) |
GET: /v1.0/iot-03/meeting-reservations/daily-reports?startTime=1625414400000&endTime=1625500800000&size=1
{
"result": {
"list": [
{
"participants_total": 0,
"meeting_total": 2,
"sign_total": 0,
"recipient_total": 0,
"reuse_time": 0,
"release_total": 0,
"rseize_total": 0,
"rseize_time": 0,
"report_time": 20210705,
"total_time": 7200000,
"release_time": 0
}
],
"has_more": false
},
"t": 1625715928417,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback