Skip to content

Get Dictionary Value

Type: dict-get  ·  Package: Collections Activities v1.0.0  ·  Output: object

Gets the value associated with a key in a dictionary and stores it in a variable.

Looks up the key key in dict and saves its value in outputVariable. If the key does not exist, it returns null.

ParameterEditorDescription
dictexpressionThe dictionary.
keyexpressionThe key to look for.
outputVariablenombre de variableVariable where to store the value.
Get Dictionary Value dict = = cliente key = "nombre" outputVariable = nombre
Log message = = "Cliente: " + str(nombre)