I’m using the Airtable api, and trying to update a record and add varous tags to an entry ( formatted as a multiple select field ). This is really a two part questions I guise. One, is it possible to create multipe choice entries, if they do not already exist as options ( dynamically create them ). Two, I can’t seem to even get it to work when I do add the options through the GUI. For instance right now im doing the following
base('Companies').update(id, {
"Categories": categories,
}, function(err, record) {
if (err) { console.error(err); return; }
console.log(record.get('Company'));
});
Where categories is an array of strings. What am I doing wrong ?