module Closeio::Client::Report
Public Instance Methods
activity_report(organization_id, options = {})
click to toggle source
OPTIONS [date_start, date_end, user_id]
# File lib/closeio/resources/report.rb, line 5 def activity_report(organization_id, options = {}) get("report/activity/#{organization_id}/?", options) end
lead_status_report(organization_id, options = {})
click to toggle source
OPTIONS [date_start, date_end]
# File lib/closeio/resources/report.rb, line 10 def lead_status_report(organization_id, options = {}) get("report/statuses/lead/#{organization_id}/", options) end
sent_emails_report(organization_id, options = {})
click to toggle source
OPTIONS [date_start, date_end, user_id]
# File lib/closeio/resources/report.rb, line 15 def sent_emails_report(organization_id, options = {}) get("report/sent_emails/#{organization_id}/", options) end