Skip to content

Generate Random Password Activity

The Generate Random Password activity creates a unique and secure password based on specified criteria. This activity enables the generation of strong credentials for various applications and systems.

Field Description Requirement
Password length Specifies the total length of the password to be generated. Optional
Uppercase count Defines the minimum number of uppercase characters to include. Optional
Lowercase count Defines the minimum number of lowercase characters to include. Optional
Numeric char count Defines the minimum number of numeric characters (digits) to include. Optional
Special char count Defines the minimum number of special characters to include. Optional
Password The name of the variable that will store the generated secure password. Required

Action Types & Examples

Generated Password Output

  • Format: string
  • Example Result: "P@ssW0rd123!"

Implementation Examples

Field Setup - Password length: 15 - Uppercase count: 3 - Lowercase count: 2 - Numeric char count: 2 - Special char count: 2

Execution Parameters - Password: generatedSecurePassword

Technical Notes

The activity employs a cryptographically secure random number generator to ensure the unpredictability and strength of the generated passwords. When specifying character counts (uppercase, lowercase, numeric, special), ensure their sum does not exceed the total password length. If the sum is less than the total length, the remaining characters will be filled randomly from all allowed character types.