Skip to content

Generate id

Description

The Generate ID activity scans the specified column and generates globally unique identifiers (GUIDs) for any rows where the value is missing or empty. This is especially useful when working with datasets that require unique keys for merging, referencing, indexing, or exporting to systems that mandate unique identifiers (e.g., databases, APIs, etc.).

The generated IDs conform to the standard UUID v4 format, ensuring randomness and uniqueness even across large datasets.


Input

TypeDescription
DataDataset where IDs need to be filled.

Output

TypeDescription
Transformed DataSame dataset with missing ID values populated using generated GUIDs.

Configuration Fields

Field NameRequiredDescription
ColumnYesThe name of the column where GUIDs should be generated if empty. Existing values are left unchanged.

Sample Input

NameUserID
Alice
Bobabcd-1234
Carol

Sample Configuration

FieldValue
ColumnUserID

Sample Output

NameUserID
Alice550e8400-e29b-41d4-a716-446655440000
Bobabcd-1234
Carol123e4567-e89b-12d3-a456-426614174000