How to store API Response in Zoom Variables

Hi Zoom Dev Team,

I’m working in the Email Channel Flow Builder and using the Webhook widget to call an external API (Gemini). The API response returns a structured JSON like the following:

{
“candidates”: [
{
“content”: {
“parts”: [
{
“text”: “Line 1: yes\nLine 2: #12345\n”
}
]
}
}
]
}

I want to store the **text** value inside a variable?
How do I correctly reference this path in Zoom Flow Builder’s Http Call Widget?

Please help me out, community!

hi @Srinath,

I am not an expert on this subject, yet, but i think this will help you.

all the best

John

1 Like

Hey @Srinath To store the ‘tex’ field, you can use JSON dot notation and reference as:

parts[0].text

1 Like