I’m trying to script some record creation right now and it involves populating a multi-select field, but for some reason I’m unable to make this updating work no matter how I try. I know that a multiple select field needs to be updated with array values only, so this is what I’ve attempted:
var book_arr = a];
book_arr.push(book_num);
await new_table.updateRecordAsync(newRecord, {'Book Number':book_arr});
where book_num is a single value that I know is already a valid option for the multi-select. I also tried to pass it directly when creating the record as just
'Book Number':mbook_num],
but no dice there either. I don’t see anything in the API documentation about updating the value of a multi-select field, only updating the options, so not sure where to turn here.