getProperty

Returns a property value. Any property set by a workflow triggered in the same transaction can be accessed. For details on how to set a property value, see setProperty.

The getProperty and setProperty functions allow you to exchange data between workflows.

Syntax

function getProperty(propertyName: string): any
 
Parameter Description
propertyName Name of the property.

Return Value

Returns the property value in its inherent data type.

Examples