CONTEXT
I’d like to create a make scenario where I’m pulling data from an API (CRM) and adding it to a google sheet. The pagination is page-based. (I pass the page variable as a parameter)
ISSUE
In the payload, there is no “total_pages” variable. All I have to work with is the following:
totalResults
resultsPerPage (capped at 25)
To get a “total_pages” variable I’d do something like “totalResults”/“resultsPerPage”
How do I get this to work? Is what I suggested the best approach?