I am using Twilio IVR studio. I am using http request widget and know I can call 'widgets.MY_WIDGET_NAME.parsed.[parsed variable name]' to get the returned json data.
Say like I have the above widget return 7 jobs inside the array of hashes. I just want to return the job_id for each one and not the other data inside it. How would I got about doing that with liquid? I know there is loop but having a hard time getting.
I can do something like widgets.MY_WIDGET_NAME.parsed.[parsed variable name][0].job_id and it returns the first id. Any help would be appreciated.
"parsed": {
"success": "7 visits found",
"visits": [
{
"job_id": "12344",
"check_in": "",
"check_out": ""
},
{
"job_id": "12344",
"check_in": "",
"check_out": ""
},
{
"job_id": "12344",
"check_in": "",
"check_out": ""
},
{