
I have created a topic that triggers on text looking for a user to enter a timecode. It then assigns the value of that timecode to a variable, timecode_val, and calls a rest API is_timecode to determine if the timecode is valid. The input to the API is a string and the response is a Boolean. I use the test bot to initiate the topic, which I confirm via my webserver logs that it calls my REST API correctly. However, the topic doesn't appear to return from my HTTP request and instead errors out with a system error. How can I debug this further? I can't seem to step through it within Studio.
I set the variable to a string literal for now which I validate it is being sent to the HTTP request correctly.
The body of the HTTP request provides the variable, timecode_val to the web service correctly.
and I place the response into a variable, is_timecode.
Can you try capturing the response as responseSchema: Any and then parse the value?