Hey @pratik,
I will try to help you with this. I hope I have understood what you want but feel free to tell me if I haven’t.
You want to send an email when you add a new row to a Baserow table, right?
I think you don’t need a dedicated Baserow trigger to listen Baserow events, you can use the generic n8n Webhook trigger node.
Select this node:

In the Flow section.
To proceed, in your new workflow:
First create the webhook node and configure it as you want. You may select POST http method (same as the Baserow webhook later)
Copy the URL from the webhook (be careful, there is two URLs, the production and test URL, select the right one, read the n8n documentation regarding this point)
Then go back to Baserow and create a webhook triggered on row creation and select the previously selected URL.
The workflow should look something like this if you use a function node to transform the data sent by Baserow before sending the email using SendGrid (or any other provider):
Don’t forget to activate the workflow so that the webhook can listen and you might need to use n8n with a tunnel to be able to test the n8n webhook in your local environment.
I hope it’ll help.



