Lookup Dictionary

Gets the value of a given dictionary key.

The Get Dictionary Value activity allows you to retrieve the value of a specific key from a user-defined Dictionary object.

Input

  • Key: String Argument The Key property is a string argument that specifies the key for which you want to retrieve the corresponding value from the given Dictionary object.

  • Dictionary: The Dictionary property is the input dictionary from which you want to retrieve the value. It represents a collection of key-value pairs where each key maps to a specific value.

Output

  • Value: Object Variable This variable stores the value associated with the specified key from the input dictionary. The value can be of any data type, such as a string, number, or even another object.

By using the Get Dictionary Value activity, you can easily access the desired value from a Dictionary object based on a specific key. This functionality is particularly useful when working with data that is organized in key-value pairs.

Last updated