Using Expressions in Frends Processes
Adding simple C# code and reference values to your Processes.
Step by Step Tutorial Available
Requirements
What are Expressions?
// This returns the value of Process Variable MyVariable, without modification
#var.MyVariable
// This checks whether a string variable is empty or not
String.IsEmptyOrNull(#var.TextVariable)
// This combines an Environment Variable and a string together
#env.ExampleCRM.BaseUrl + "/api/v1/customers"
// This obtains a result value from a Task earlier in the Process
#result[My HTTP Request Task].Body
// Trigger reference values are the input values to a Process
// Dot is used to access a field from the parent object
#trigger.data.HttpBody
// Object fields can also be accessed using indices
#var.ObjectVariable["MyField"]Where are Expressions used?


Assign Variable shapes

Task Input Fields


Decision Shapes

AI Connectors

Learn More
Last updated
Was this helpful?

