I have an AI chatbot scenario as shown in the image above. Each time I send a new message to the page, it executes the scenario and then continues to run through the scenarios that have been executed before in the history, resulting in it sending a series of old messages.
That’s because of the “search rows” module.
So, I noticed that you added a search rows module right before the second router on your scenario.
The search rows module works like an iterator. It returns an array of items(rows) called bundles, from your Google sheet and loops through each and every one of them based on the number of items in the array.
But you can fix this by re-setting the limit of the number of items you want it to return.
You can set the limit to one so it only goes through it once.
when I use another account and send the message to the page. it’s still run through the scenarios that have been executed before in the history
@Tho_Dey it is not really about the account you are using. it is more about how correctly the workflow is structured. You have to structure it correctly, otherwise, it won’t work.