Help

Script error linked record

Topic Labels: Automations
447 3
cancel
Showing results for 
Search instead for 
Did you mean: 

Hi, 

I want to create a new record and link it with the right assets.

Creating the record goes wel, but linking the assets won't work.

I get this error. I am a bit new to airtable, maybe it is a beginner mistake.

Thanks in advance.

Greetings,
Robin

Scherm­afbeelding 2024-10-31 om 20.26.14.png

 

 

 

const inputData = input.config();
const { txt_name, txt_files } = inputData;

// Specify the tables
let postsTable = base.getTable('Social media posts');
let assetsTable = base.getTable('Assets');

// Create a new record in the 'Social media posts' table and capture the ID
let newRecordId = await postsTable.createRecordAsync({
    'Naam': txt_name,
});

// Update the record in 'Assets' where the ID matches txt_files, setting "Social media posts" field to the new record ID
await assetsTable.updateRecordAsync(txt_files, {
    'Social media posts': [{ id: newRecordId }],
});

 

 

 

3 Replies 3

Could I check that you've set your input variable for the linked record to display as "ID"?
Screenshot 2024-11-01 at 10.11.01 AM.png

The linked records value is also an array, so you'd need to do `txt_files[0]` in your updateRecordAsync

Thanks!  Also just realized that your screenshot actually includes that detail, sorry about missing that

Did the array thing work?