Files
2026-07-13 12:20:06 +08:00

1.2 KiB

REST API - Reports

Usage reports and analytics endpoints.

Overview

Access meeting statistics, usage reports, and analytics data.

Endpoints

Daily Usage Report

GET /report/daily

Query parameters:

  • year - Year (required)
  • month - Month (required)

Meeting Participants Report

GET /report/meetings/{meetingId}/participants

Meeting Details Report

GET /report/meetings/{meetingId}

Webinar Participants Report

GET /report/webinars/{webinarId}/participants

Active/Inactive Host Report

GET /report/users

Response Data

Daily Usage

{
  "dates": [
    {
      "date": "2024-01-15",
      "new_users": 5,
      "meetings": 25,
      "participants": 150,
      "meeting_minutes": 3600
    }
  ]
}

Meeting Participants

{
  "participants": [
    {
      "id": "user_id",
      "name": "User Name",
      "user_email": "user@example.com",
      "join_time": "2024-01-15T10:00:00Z",
      "leave_time": "2024-01-15T11:00:00Z",
      "duration": 3600
    }
  ]
}

Required Scopes

  • report:read - View reports

Resources