Random String
Generate random strings, numbers, and identifiers.
Generate random strings and numbers for IDs, codes, and tokens.
Configuration
Inputs
| Name | Code | Type | Required | Default | Description |
|---|---|---|---|---|---|
| Random Type | random_type | Integer | No | 0 | Type of random generation |
| Size | size | Integer | No | 4 | Length of random string |
| Minimum | min | Integer | No | 1000 | Minimum value for number |
| Maximum | max | Integer | No | 9999 | Maximum value for number |
Outputs
| Name | Type | Description |
|---|---|---|
| result | Text | Generated random value |
| error | Text | Error message if failed |
Random Types
| Type | Description |
|---|---|
| 0 | Alphanumeric string |
| 1 | Numeric only |
| 2 | UUID |
Usage
Random String
{
"random_type": 0,
"size": 8
}Random Number
{
"random_type": 1,
"min": 100000,
"max": 999999
}UUID
{
"random_type": 2
}Use Cases
- Generate confirmation codes
- Create unique order IDs
- Generate temporary passwords
- Create correlation IDs for tracing