Module: Closeio::Client::Report

Included in:
Closeio::Client
Defined in:
lib/closeio/resources/report.rb

Instance Method Summary collapse

Instance Method Details

#activity_report(organization_id, options = {}) ⇒ Object

OPTIONS [date_start, date_end, user_id]



5
6
7
# 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 = {}) ⇒ Object

OPTIONS [date_start, date_end]



10
11
12
# 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 = {}) ⇒ Object

OPTIONS [date_start, date_end, user_id]



15
16
17
# File 'lib/closeio/resources/report.rb', line 15

def sent_emails_report(organization_id, options = {})
  get("report/sent_emails/#{organization_id}/", options)
end