The Community will be undergoing maintenance from Friday February 21 - Friday, February 29 and will be "read only" during this time. To learn more, check out our Announcements blog post.
I am using an automation that uses a script to append a record to another table's linked field. My code is shown below.This is not working however, as the record.getCellValue('Worksheet: BOM") is returning an array that has the format ("string") inst...
I have a situation where:1) I use a template to create several records in "Table A". 2) I link those records to a singular record in "Table B" on creation.I have tried using an automation that checks when the record is created in "Table A", finds the...
This works but I am not able to use the updateRecordAsync function as I am getting this error.I assume I have to cast it to an array of type {id: string} but I do not know how to do that.
Correct me if I am mistaken, but I think the updateRecordAsync accepts multiple ID's if you push them through an array. This is on the airtable developers wiki:I tried to mimic their code, however it does not work for me.
The `record.getCellValue('Worksheet: BOM')` returns an array of the value " {id: string; name: string;}[] while I am only trying to push a ID into that array. Additionally, the updateRecordAsync action only accepts the object of {id: string}, which i...
Are the avaliable input types for when the script already begins running (awaits input from user) or is it to activate the script (before it is ran)? Correct me if I am wrong, but I am trying to run it without having to even run the script but the in...
How do I connect the extension to an automation? I already have scripts that I run on activation as well as scripts that are activated with a button, but I am unsure how to connect it with an automation or have it mimic the same behavior.