Skip to main content

RecordID for Record Just Created with CreateRecordsASync

  • May 1, 2022
  • 2 replies
  • 10 views

Forum|alt.badge.img+14

Hi there -

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

2 replies

kuovonne
Forum|alt.badge.img+29
  • Brainy
  • 6009 replies
  • May 1, 2022

The new record IDs are returned by the call.

const newRecordIds = await table.createRecordsAsync(recordsToCreate)

This info is in the scripting documentation.


Forum|alt.badge.img+14
  • Author
  • Inspiring
  • 93 replies
  • May 1, 2022

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!