Help

Re: How can i execute the Js/Node js code from within the Airtable Column?

1194 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Jay_P
7 - App Architect
7 - App Architect

How can i execute the Js/Node js code from within the Airtable Column ?
It should capture the record Id from there and do what is needed.

3 Replies 3

Hi @Jay_P
You can add the Scripting App to your base and use Javascript to work with the records in your base. You can add buttons or Automations to your base to execute the scripts.

So i am able to call external node code from the airtable. But I can’t figure how to get the record id of the record that triggered the automation.

Create an input variable in the left panel of the script editor. Name it something like recordID and set it’s value to the record id of the triggering record. Then in you script, get the value using input.config() as showin in your other post.