Jun 02, 2022 01:28 AM
Hello, How do I pass function parameters as JSON field name for updating fields in Airtable using Airtable REST API and Node.js?
The code
const updateField = async (id, field_name, updateValue) => {
base('table_name').update([
{
"id": id,
"fields": {
field_name: updateValue
}
}
], function (err, records) {
if (err) {
console.error(err);
return;
}
});
}
Solved! Go to Solution.
Jun 02, 2022 06:45 AM
Jun 02, 2022 06:45 AM
Is this what you need?
[field_name]: updateValue
Jun 02, 2022 08:30 AM
Works!
Thank you for pointing out the silly mistake!