Catalog action Utility

Generate unique identifiers (UUID or short ID). UUID is standard 36-char format. Short ID is alphanumeric and email-safe. Ideal for: order IDs, reference codes, tracking numbers, unique keys, email-safe identifiers.

At a Glance

FieldValue
Action IDgenerate-id
CategoryUtility
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagsgenerator, random, string, email

Payload Schema

FieldTypeRequiredDescription
formatstringNoID format to generate. UUID is 36 chars, Short ID is customizable length.
lengthnumberNoLength for short ID (default: 8). Ignored for UUID format.

Result Schema

FieldTypeRequiredDescription
idstringYesThe generated unique identifier
formatstringYesThe format used to generate the ID

Examples

json
{ "type": "generate-id", "payload": { "format": "uuid", "length": 8 }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.

Ask a question... ⌘I