From 90d9f70faffcf4491a33b107ea0fb72eccc39c85 Mon Sep 17 00:00:00 2001 From: ollizeyen Date: Mon, 16 Nov 2020 19:41:06 +0100 Subject: [PATCH] Merge additional options to enable 'since" filter by time providing unix timestamp with ticks (13 digits) --- lib/hubspot/company.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hubspot/company.rb b/lib/hubspot/company.rb index 8f6e2d77..eb956faa 100644 --- a/lib/hubspot/company.rb +++ b/lib/hubspot/company.rb @@ -70,7 +70,7 @@ def recently_modified(opts = {}) Hubspot::PagedCollection.new(opts) do |options, offset, limit| response = Hubspot::Connection.get_json( RECENTLY_MODIFIED_PATH, - {offset: offset, count: limit} + options.merge(offset: offset, limit: limit) ) companies = response["results"].map { |result| from_result(result) }