Query Daily Usage Report

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.

API address

GET: /v1.0/iot-03/meeting-reservations/daily-reports

Request parameter

Parameter nameTypeINRequiredDescription
reqReportQueryReqquerytrueThe request of querying the report.

Description of req

Parameter nameTypeINRequiredDescription
start_timeLong trueThe start time.
end_timeLong trueThe end time.
page_sizeInteger falseThe number of entries returned on each page.

Return parameter

Parameter nameTypeDescription
resultCursorPage

Description of result

Parameter nameTypeDescription
last_row_keyStringThe cursor of the previous page. You can scroll and query the items.
listList
has_moreBooleanWhether there is a next page of results.

Description of list

Parameter nameTypeDescription
report_timeLongThe reporting time.
meeting_totalIntegerThe total number of meetings.
participants_totalIntegerThe total number of participants.
recipient_totalIntegerThe total number of persons who accept the meetings.
sign_totalIntegerThe total number of sign-in persons.
total_timeLongThe total duration of meetings.
release_timeLongThe time when a meeting is released.
release_totalIntegerThe number of times for which the meetings are released.
rseize_totalIntegerThe number of times for which the meetings are preempted.
rseize_timeLongThe duration for which the meetings are preempted.
reuse_timeLongThe duration for which a meeting room is reused after release.
reuse_rateStringThe reuse rate of meeting rooms. The calculation method is: the re-scheduled duration after release ÷ total release time (including active termination and device release)

Request example

GET: /v1.0/iot-03/meeting-reservations/daily-reports?startTime=1625414400000&endTime=1625500800000&size=1

Return example

{
    "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
}

Error code

For more information, see error code.