You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I'm trying to set up a webhook match rule for referencing to a nested value in the JSON payload. This is an example JSON: { "commits": [ {"title": "Test"}, {"title": "Merge"} ] }
And here's part of my trigger-rule:
The thing is there may be an uncertain number of commits in JSON and I need to match any of it. This is why I can't refer to specific JSON values. I was trying to set values like name: commits.title, name: commits..title or name: commits.[].title, but it doesn't work. The error from the log file: "parameter node not found". Is it a bug or a feature? Is there any way to match any nested value?
The text was updated successfully, but these errors were encountered:
Hello. I'm trying to set up a webhook match rule for referencing to a nested value in the JSON payload. This is an example JSON:
{ "commits": [ {"title": "Test"}, {"title": "Merge"} ] }
And here's part of my trigger-rule:
The thing is there may be an uncertain number of commits in JSON and I need to match any of it. This is why I can't refer to specific JSON values. I was trying to set values like
name: commits.title
,name: commits..title
orname: commits.[].title
, but it doesn't work. The error from the log file: "parameter node not found". Is it a bug or a feature? Is there any way to match any nested value?The text was updated successfully, but these errors were encountered: