May 13, 2022 11:27 AM
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.
May 13, 2022 12:01 PM
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.
May 18, 2022 04:27 PM
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.
May 18, 2022 07:45 PM
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.