generateUuidV7

Generates a v7 UUID, which is a UUID with a time-based prefix and random suffix. Sentinel uses v7 UUIDs for its message UUIDs, as they are random yet sortable.

This function is restricted. Use of this function in your script will require a manual review before it will execute on the Sentinel infrastructure.

Signatures

beacon.generateUuidV7();

Return Values

Type Notes
String A v7 UUID

Examples

Generate a v7 UUID

beacon.generateUuidV7();

See Also