Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 ChannaK
		
			ChannaK
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
 steeefan
		
			steeefan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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;