From a2c4cfedbed516f2707a8ced31da7bdf2428b162 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 9 Apr 2025 15:42:33 +0000 Subject: [PATCH] hubspot pagination finsihed --- etl/hubSpotClient/hubspot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etl/hubSpotClient/hubspot.py b/etl/hubSpotClient/hubspot.py index 303be66..283a7ce 100644 --- a/etl/hubSpotClient/hubspot.py +++ b/etl/hubSpotClient/hubspot.py @@ -38,8 +38,8 @@ class HubSpotClient(): "domna_survey_post_sap", "existing_wall_insulation" ], - limit=20 - after=after + limit=200, + after=after, ) response = self.client.crm.deals.search_api.do_search(search_request) found_deals.extend(response.results)