Skip to main content

UUID Component

Generate UUIDs and GUIDs

Component key: uuid

Description

Generate randomized UUIDs. This is useful for when you need to generate a unique identifier.

This component uses the uuid library and generates version 4 UUIDs.

Actions

Generate UUID

Generate a version 4 UUID / GUID | key: generateUUID

Output Example Payload

{
"data": "abcd1234-abcd-1234-abcd-abcd1234abcd"
}

Nil/Empty UUID

Return the nil / empty UUID (00000000-0000-0000-0000-000000000000) | key: emptyUUID

Output Example Payload

{
"data": "00000000-0000-0000-0000-000000000000"
}