Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.
```
<your workflow>
```
That implies to any JSON output you would like to share with us.
Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!
n8n does not have trigger for Coda services. However, as I can see they do support webhooks. That means you can set up webhook on Coda side to send events when the status has changed, Create webhook-triggered automations | Coda Help Center. Then with n8n, you can do what you were planning to do in response to that event. That implies using generic Webhook node in your n8n workflow to activate it when Coda sends the data.
Thanks, although unless I missed something it seems that it does the opposite, it triggers a Coda automation when receiving a post command. this is what I have on Zapier. The webhook part there is mering some other data, but the trigger is the issue, where I wnt the n8n workflow to run when let’s say column status is “ready to request”
As I understand it right, Coda allows you to send either HTTP Request or emai messages when, say, a row has changed. At least it seems to allow the request to be sent to Zappier or send notifications. If by notifications is meant email and custom URL are not supported then you can use n8n email trigger to wait for the email with a specific subject to land into inbox and act on it.
Note that I am not familiar with Coda and just checking their docs to generate some idea. Hopefully something useful can come out of it.
Hey @ihortom Thanks so much for the help.
It doesn’t naturally do it but with this pack I was able to modify the json output and send it, so now all this workflow works. Leacving the link here if it helps someone