Here's a flow in which I make several requests to third-party APIs. In these requests, I need the user's responses to save the variables and use this content to make the requests. To make it easier, I'll give an example below:
BLOCK A http request1
INPUTS BLOCK
BLOCK B http request B
In the "INPUTS BLOCK" I have some inputs in which I use the user's response to send "http request B". However, the problem is that when I start the bot, it starts executing all the requests, which gives an error because I don't yet have the necessary data to make the request.
According to the doc, Typebot compiles the block as a whole before executing it, but I don't understand if it's block by block or the entire block.
Does anyone have any idea if this is correct or if there's a way around it?