module Auth0::Api::V2::Stats

auth0.com/docs/apiv2#!/stats

Public Instance Methods

active_users() click to toggle source

auth0.com/docs/apiv2#!/stats/get_active_users

# File lib/auth0/api/v2/stats.rb, line 7
def active_users
  get(path)
end
daily_stats(from, to) click to toggle source

auth0.com/docs/apiv2#!/stats/get_daily

# File lib/auth0/api/v2/stats.rb, line 12
def daily_stats(from, to)
  request_params = {
    from: from,
    to: to
  }
  get(path, request_params)
end