Hello,
I’m building a custom app that has two modules:
Run Operation: starts a operation run asynchronously
Operation Finished: An instant shared webhook that gets triggered once an operation finishes running
In the webhook parameters I have a single select field containing the operation ID, so it should only trigger for that specific operation. I have the following JSONC:
{
“uid”: “{{body.uid}}”,
“output”: {{body.data}}",
“condition”: “{{parameters.app == body.app}}”
}
app is basically an ‘operation’. This never triggers, I’ve tried just setting condition to just true and it works. Then I even changed the output to {“test”: “{{parameters.app == body.app}}”} to verify that it’s returning true and it was. What could be the issue here?