Hi all,
I am using a marketplace app for some secure custom fields as part of an approvals process. I have setup a web request to access this field as part of an automation to record some information at the point the field is filled out.
As part of the automation I have a smart value comparison field in an IF function that I want to use to look at the webresponse value. The secure custom field is a checkbox with Approve being the option I want to look at.
Using this smart value: {{webhookRepsonse.body.fields}}
I can see this response: {customfield_10125=null}
But by then trying to go a step further to {{webhookRepsonse.body.fields.customfield_10125[0}.value}}
I get nothing.
my payload looks like this:
{
"id": "11701",
"key": "LAT001-829",
"fields": {
"customfield_10125": null
}
}
To summarise, I would like to be able to read the custom field value and use it in the IF function to check whether it contains the word "Approved".

Any help would be greatly appreciated.