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?
Hello everyone, how are you? The question in question is about the request body. I save some data in variables that I later need to send to an API to retrieve other data. However, this API has some cases where it validates numbers as integer and since Typebot only stores strings or arrays of them, I am not able to communicate with it efficiently. Is there any way to make the https request by passing some parameters as integers instead of strings?