Skip to main content

Utility Actions

Append To List

Append an item to the end of a list. If the variable does not exist, the action will create a new list automatically.

ParameterDescription
Variable NameThe name of the variable.
ItemItem to add to list.
Thumbnail

Generate MD5 Hash From String

Generates a MD5 hash from a string.

For example: For input string: blink, the returned generated MD5 hash will be: 40652ee9ae143f1c1c830f01a5449ecb.

ParameterDescription
StringThe MD5 hash will be calculated based on this string.
Thumbnail

Generate SHA1 Hash From String

Generates a SHA1 hash from a string.

For example: For input string: blink, the returned generated SHA1 hash will be: dcae3a7a7c14a77ef384f1c5df6e63edc780eba0.

ParameterDescription
StringThe SHA1 hash will be calculated based on this string.
Thumbnail

Generate SHA256 Hash From String

Generates a SHA256 hash from a string.

For example: For input string: blink, the returned generated SHA256 hash will be: e14a51fded1fb9b43de815d3832da099053b583f1d2c01d0495a70f118df426c.

ParameterDescription
StringThe SHA256 hash will be calculated based on this string.
Thumbnail

Generate UUID V4

Generates a random version 4 UUID.

Note: A Version 4 UUID is a universally unique identifier that is generated using random numbers. There is no warranty that the provided UUID is unique.

Thumbnail

Run JP Command

Run a JSON path query command on a given JSON object.

ParameterDescription
JSONJSON object to run the path query command on.
QueryPath query command to run.
UnquotedIf the final result is a string, it will be printed without quotes.
Thumbnail

Run JQ Command

Run a JSON query command on a given JSON object.

ParameterDescription
JSONJSON object to run the query command on.
QueryQuery command to run.
Thumbnail

Get TLS Certificate Information

Retrieves information about the security certificate (TLS/SSL) used by an endpoint for encrypted communication.

ParameterDescription
HostnameThe hostname of the endpoint.
PortThe port number of the endpoint.
Thumbnail

Check IP in CIDR

Checks if an IP address belongs to a specific network (CIDR block). Returns True or False.

For example: The given IP 192.168.1.10, and the CIDR 192.168.1.0/24 will result in the output True.

ParameterDescription
IP AddressThe IP that needs to be checked as a plain string.
CIDRThe network, represented as a CIDR.
Thumbnail

Get Epoch Time

Gets an epoch time specific or relative to a given time.

ParameterDescription
TimeCan be a specific date and hour, or a relative range.
Epoch FormatWhether to display the epoch time as seconds or milliseconds.
Thumbnail

Convert CSV To JSON

Convert a CSV object to a JSON object.

ParameterDescription
CSV ObjectCSV object to convert to the JSON format.
Thumbnail

Convert CSV To HTML Table

Convert a CSV object to an HTML Table.

ParameterDescription
CSV ObjectCSV object to convert to an HTML Table format.
Thumbnail

Get Time Difference Between Timestamps

Get Time Difference, in Seconds, Between Two Different Timestamps.

ParameterDescription
Timestamp 1The first Timestamp. Can be a specific date and hour, or a relative range.
Timestamp 2The second Timestamp. Can be a specific date and hour, or a relative range.
Thumbnail

Print

Prints text to the output screen.

ParameterDescription
TextThe text to print.
Thumbnail

Get Timezone

Gets the timezone identifier from a latitude/longitude pair or from the current workspace.

Can be used in conjunction with the Get Timezone Offset to get the amount of seconds after GMT.

ParameterDescription
Location TypeChoose how the location for the timezone should be provided.
LatitudeThe degrees latitude of the desired position to get the time for.
LongitudeThe degrees longitude of the desired position to get the time for.
Thumbnail

Get Timezone Offset

Gets the timezone offset (in seconds) relative to GMT from a IANA timezone identifier.

ParameterDescription
Timezone IdentifierThe IANA timezone identifier, usually provided as <Country>/<City>.
If given UTC, returns the offset of UTC time (0).
Visit Wikipedia for a frequently updated list of names.
For the most updated list, visit the IANA registry and download the distribution file.
Thumbnail

Generate Password

Generates secret password and stores it in a variable.

ParameterDescription
Variable NameThe name of the variable to store the generated password in.
Password LengthThe password length, default 10.
Include Special Chars[!-*] character set - !@#$%&*.
Include Lowercase Chars[a-z] character set - abcdedfghijklmnopqrst.
Include Uppercase Chars[A-Z] character set - ABCDEFGHIJKLMNOPQRSTUVWXYZ.
Include Digit Chars[0-9] character set - 0123456789.
Thumbnail

Increment Variable

The Increment Variable utility action enables you to increment your variable by a value of one. You can choose the variable you would like to increment by selecting it from the dynamic dropdown menu.

Thumbnail

Extend List

The Extend List utility action allows you to append an item to the end of your list or append a second list onto the end of your original list. You can choose the list you want to append to by clicking on the dynamic dropdown menu and selecting your preferred list.

ParameterDescription
Variable nameThe name of the original list variable
List to appendThe name of second list to append.
ValueName of the item to append to the list

The Extend List utility action enables you to:

  1. Append a variable to the end of an original list
Thumbnail
  1. Append a second list to the end of an original list
Thumbnail
  1. Append both a variable and a second list to the end of the original list
Thumbnail