Sha256: 1afe7cd6762a7bcfa78b72aa4e6583b330fd86326acc22ddc2096d84f4532d34

Contents?: true

Size: 508 Bytes

Versions: 11

Compression:

Stored size: 508 Bytes

Contents

# frozen_string_literal: true

module Zoom
  module Actions
    module Report
      extend Zoom::Actions

      get 'daily_report', '/report/daily',
        permit: %i[year month]

      get 'meeting_details_report', '/report/meetings/:id'

      get 'meeting_participants_report', '/report/meetings/:id/participants',
        permit: %i[page_size next_page_token]

      get 'webinar_participants_report', '/report/webinars/:id/participants',
        permit: %i[page_size next_page_token]
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
zoom_rb-1.1.7 lib/zoom/actions/report.rb
zoom_rb-1.1.6 lib/zoom/actions/report.rb
zoom_rb-1.1.5 lib/zoom/actions/report.rb
zoom_rb-1.1.4 lib/zoom/actions/report.rb
zoom_rb-1.1.3 lib/zoom/actions/report.rb
zoom_rb-1.1.2 lib/zoom/actions/report.rb
zoom_rb-1.1.1 lib/zoom/actions/report.rb
zoom_rb-1.1.0 lib/zoom/actions/report.rb
zoom_rb-1.0.2 lib/zoom/actions/report.rb
zoom_rb-1.0.1 lib/zoom/actions/report.rb
zoom_rb-1.0.0 lib/zoom/actions/report.rb