Webhook is not triggering Workflow

Why query1 is not triggering workflow.



Also how can we display the response in app?

Did you check the history tab if it ran? It will not run live in the editor. You will have a record with all information under history.

IMG_9902

1 Like

it is triggering the workflow, you just haven't done anything with the response from it yet.

image
change 'Trigger Workflow' to {{ query1.data }}. now when you click the button, it runs query1, when query1 returns the text in the button will update. you can do complex conditionals also like {{ !query1.data? "Default Text" : query1.data }} this checks if query1 has any return data, if it doesn't the button text says "Default Text", otherwise the button says whatever query1 returned last.

1 Like