Name (Record ID)
It's an unique identification of the record

What is the Name field?
It's the default field that is created automatically when you create a table, it cannot be deleted and is also used as a unique record ID to connect tables
Common use cases

- Use it as a “Name” field:
- “Record Id” can be used as a name of a product or a description of an event.
For Example:
In an “Inventory” table it can be used to save the name of the products.
- Sequential id:
- “Record Id” can be used as a sequential id to record the number of events that happened
For Example:
In a “Sales” flow it can be used to register the number of the order.
- Random code:
- “Record Id” can be used as a random sequential number if you want to have a unique id for each record in a situation that records are created constantly
For Example:
In a “Bug Tracker” flow it can be used to register the Id of the bugs.
Updated about 1 year ago
What’s Next