I have a table that is suppossed to create records for file attachment and other details.
Juding from code below, How do I attach files along with other records in airtable.
Do I have to convert the file to base64 or just upload the files to a remote server and then add the file links in the record.
How does air table programmatically handle files attachments be it photos, pdf, videos etc. can someone help me out with the code below
Thanks
const files_tab = base.getTableByNameIfExists('myfiles_table');
const ok = files_tab.createRecordAsync({'title': 'file title','description': 'file details', 'myfile': 'my file attachment goes here'});