May 01, 2022 07:21 AM
Hi there -
When using createrecordsasync, it’s helpful to know what record ID was just created. How is it possible?
May 01, 2022 09:02 AM
The new record IDs are returned by the call.
const newRecordIds = await table.createRecordsAsync(recordsToCreate)
This info is in the scripting documentation.
May 01, 2022 09:15 AM
Super helpful. Thanks!