10.0: Create new records from an interaction #26
jstanden
started this conversation in
Guides and Tutorials
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Introduction
A common use case for interactions is creating new records.
This guide demonstrates the two most common ways to create records from interaction automations.
Use the await:record: continuation
You can open the built-in record editor popup from an interaction with the await:record: continuation.
Once the record is saved, the continuation returns an
event
and the savedrecord
dictionary.In the following
interaction.worker
interaction, the task editor opens to create a new record. After saving, the newly created record is automatically linked to a project board column.Create your own editor with interactions
This above continuation works well for most use cases. However, it does require that workers have access to create records of the desired type.
You can also use an interaction to display a form and create a record type that workers couldn't create for themselves. This is particularly common with custom records.
This
interaction.worker
interaction displays a form for gathering fields, then it creates a new task.The above interaction demonstrates how to use a sheet element with both hardcoded and dynamic data.
Beta Was this translation helpful? Give feedback.
All reactions