Hello everyone,
First post in the community basically I am using three custom actions in a workflow that work fine on their own but don’t work when I combine them. I’m wondering if there might be some timeout limitations by Adalo ? For UX reasons, I want to combine all three in the same workflow (when pushing a button, all three run).
Here are the details :
I use two APIs : one that retrieves some text, and a second one that turns it into an audio file (text-to-speech).
The first API is rather simple and works fine when I use it by itself.
The second one consists of two requests (and therefore two custom actions) : one POST request to generate the audio on the server of the provider, that returns a transcriptionID and a second GET request in which I input the transcriptionId and that returns the audio link.
I have noticed that if I use some fixed text as input to the second API, it works. But when I use the output of the first API, it doesn’t work anymore. I have also noticed that if I try to use the transcriptionId output directly as an input to the GET request, it doesn’t work, but it does work if I update a “response” in the database in-between and use it as input.
Seems quite chaotic, would you have any idea what’s happening here ? Thanks in advance