Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Does expandRecord() function exist for new entry creation?

Topic Labels: Custom Extensions
Solved
Jump to Solution
2295 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Mixable
5 - Automation Enthusiast
5 - Automation Enthusiast

I’ve been using the expandRecord() function call to provide a quick way to update content in my Block interface, but I would LOVE to use that flow for new data entry as well. Is that possible?

I’ve read through the documentation and example projects and I didn’t see this noted. And expandRecord() does currently require a record to be passed to it.

1 Solution

Accepted Solutions
Emma_Yeap
Airtable Employee
Airtable Employee

Hi Mixable,

You can use createRecordAsync to create an empty new record, wait for it to be created, and then open it using expandRecord.

@Jeremy_Oglesby and @Billy_Littlefield wrote about ways to implement this in a previous AMA: Jeremy’s response, Billy’s response.

Also, not sure if you’ve seen it (you mentioned documentation and example projects) but we do have a guide on writing back to Airtable.

Hope that helps!

See Solution in Thread

2 Replies 2
Emma_Yeap
Airtable Employee
Airtable Employee

Hi Mixable,

You can use createRecordAsync to create an empty new record, wait for it to be created, and then open it using expandRecord.

@Jeremy_Oglesby and @Billy_Littlefield wrote about ways to implement this in a previous AMA: Jeremy’s response, Billy’s response.

Also, not sure if you’ve seen it (you mentioned documentation and example projects) but we do have a guide on writing back to Airtable.

Hope that helps!

Mixable
5 - Automation Enthusiast
5 - Automation Enthusiast

Super helpful! Thank you for the pointers @Emma_Yeap