API Process

Hello All
I have created this flow
calling_data_and Writing to Web Page.xaml (20.0 KB)

where i am calling an API with that API i am getting data and writtng in RPA challange portal
I need a help that i want to run that process again and again… on loop for 50 time…
please let me know how can i do it,…

Assuming the workflow runs fine, you can add a counter variable initialized to 50, run the process in a while loop (While counter variable is greater than one or zero) and decrement the variable in each iteration (counter = counter -1).

Hi @office_work ,

If you want to run your workflow in a loop, create a counter variable and use a While/Do While loop

@PAVITHRAN
where i should use counter and which activity i should put into while loop…

Please correct me if I’m wrong.
You want to fetch data via API and write in the portal. This has to be repeated 50 times.
If yes, put the entire sequence in while loop and set condition as counter <= 50. Inside while loop after you write the data, you can increment the counter by 1.