Help

RecordID for Record Just Created with CreateRecordsASync

Topic Labels: Scripting extentions
679 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Rose_Haft1
8 - Airtable Astronomer
8 - Airtable Astronomer

Hi there -

When using createrecordsasync, it’s helpful to know what record ID was just created. How is it possible?

2 Replies 2

The new record IDs are returned by the call.

const newRecordIds = await table.createRecordsAsync(recordsToCreate)

This info is in the scripting documentation.

Super helpful. Thanks!