I set up an automation to send a web request to 3rd party via webhook.
This is part of the payload I get back:
{ "total": 1, "rows": [ { "id": 15, "avatar": "//avatar", "name": "Name", "first_name": "FIRST", "last_name": "LAST",
I want to access the value of id and set it to a custom field. I created a single line text field and tried using {{webhookdata.rows[0].id}} to set value of the field, but it stays blank. Not sure what I'm doing wrong - does format of the field matter?
If anyone needs, I found the solution. It's {{webhookResponse.body.rows.get(0).id}}
{{webhookdata.rows[0].id}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.