I have a scenario that starts when a video is created with Videoask. The video is a pre-interview video that a candidate submits prior to being selected for a formal interview. The system allows the candidate to answer several questions, and for most of the questions, they record a video. The module sends various information, including the transcript for each answer provided.
The answers are located in an array of collections:
If there is no transcript, then the scenario should disregard this specific collection. The scenario needs the transcript from each collection requiring a video recording, therefore creating a transcript from the answer.
I need to be able to extract the transcript from each collection, along with the question associated with the transcript. Collection 1 does not have a transcript in this example, as it is not a video question but a checkbox in the Videoask process. Therefore, this should be disregarded automatically. What I want to achieve is this result:
A generated text where I will have:
QUESTION1: HERE THE QUESTION 1 (I can type it manually)
Transcript: {{Here is the value from the field of the first question to be processed, which in this case is Collection 2.}}
I know which question corresponds to which collection, so it is not an issue for me to know that Collection X is related to this specific Question Y.
How can I concatenate this text with the transcripts, with a line break between each question and transcript?
blueprint.json (84.3 KB)