# -*- encoding: utf-8 -*- module SendGrid4r module REST module Stats # # SendGrid Web API v3 Stats - Global # module Global include SendGrid4r::REST::Request def get_global_stats( start_date:, end_date: nil, aggregated_by: nil, &block ) params = { start_date: start_date, end_date: end_date, aggregated_by: aggregated_by } resp = get(@auth, "#{BASE_URL}/stats", params, &block) SendGrid4r::REST::Stats.create_top_stats(resp) end end end end end