Skip to main content
Base Node Node inspector for a Zoom (Recall) node

Parameters

Zoom Session
object
required
Active session from a Zoom (Join) node.

Inputs

Input
any
Inputs are ignored; the input port is only for graph connectivity.

Outputs

Output
array[json]
Full transcript from the start of the meeting up to the current moment, returned as an array of objects.
Sample output
[
  {
    "speaker": "1",
    "text": "We can start the review now.",
    "start_time": 3.1,
    "end_time": 6.7
  },
  {
    "speaker": "Delegate A",
    "text": "I have the numbers ready.",
    "start_time": 7.2,
    "end_time": 10.4
  }
]
Each transcript segment includes the following fields:
FieldDescription
speakerSpeaker index like "0" or "1", or a delegate name.
textSpeech transcript.
start_timeSegment start time in seconds.
end_timeSegment end time in seconds.