Hi
I get this Data from a Webhook http request using json:
Data
[
{
“Title”: “alpha”
}
{
“Title”: “beta”
}
]
And I want to post a message with this result.
I tried this:
{{make_a_http_request.data__title}}
and also this
{{make_a_http_request.data__0__title}}
But it doesn’t work. May be because ‘Data’ is starting with ‘[’ instead of ‘{’
Please, could you help me?