Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to download data from hubspot
loop is not getting all only first set
every time i need to pass output value to URL using this variable (vRowCount)
i test with postman
As I posted earlier: Before entering the loop, you have to initiate the variable:
SET vMore = 'True';
In your case:
SET vMore = 'True';
DO WHILE vMore = 'True';
// Your code
LET vMore = peek('has-more',-1,'root');
LET vRowCount = peek('vid-offset',-1,'root');
LOOP;