module BWAPI::Client::Admin::Clients

Clients module for admin/clients endpoints

Public Instance Methods

daily_usage(client_id, opts = {}) click to toggle source

Retrieve the daily usage for the given client

TODO: Add parameters documentation

# File lib/bwapi/client/admin/clients.rb, line 19
def daily_usage(client_id, opts = {})
  get "admin/clients/#{client_id}/usage/daily", opts
end
login_report(client_id, opts = {}) click to toggle source

Retrieve the login count for users for the given client

TODO: Add parameters documentation

# File lib/bwapi/client/admin/clients.rb, line 12
def login_report(client_id, opts = {})
  get "admin/clients/#{client_id}/login-report", opts
end