Hi I am a beginner in HubSpot.
I have few doubts.
I currently have a google app script that fetches all deals data from HubSpot using api.
I want to recreate the same output using python.
# GS
var response = UrlFetchApp.fetch(‘https://api.hubapi.com/crm/v3/objects/deals/search?hapikey=my_apli_key’, options);
Problems:
1. I went through API doc on Hubspot, I could only get limited help.
I used the template to fetch some deals but these deals have only 6-7.
2 . Paging association, how to use that? I am only able to get 100 deals at a time. But I have more than 1000 deals.
If anyone could help with resources for the same, that would be great.
# python GET code
# properties in Deals API response
Thanks in advance.

