System steps
Discover system steps
Start step #
General Info #
Category | Description | Rules |
---|
System | Initiates the flow. | - A single start step is mandatory. |
No configuration required.
Outputs #
No configuration required.
Sample #
End step #
General Info #
Category | Description | Rules |
---|
System | Marks the end of the flow. Optional, and can return a result. | - At least one end step is required. |
Label | Type | Required | Visibility | Description |
---|
Return result | boolean | no | Always | When true , it returns the final result of the flow. |
Result | object | no | config.returnResult | The final result to be returned by the flow. |
Outputs #
No configuration required.
Sample #
Logger step #
General Info #
Category | Description |
---|
System | Logs application events. |
Label | Type | Required | Default | Visibility | Description |
---|
level | choice | yes | Info | Always | Log importance level. Possible values: Info , Warning , Error , Debug |
Message | text | yes | - | Always | Message to be logged, supports dynamic arguments for formatting. |
Arguments | text | no | - | Always | Arguments for the format string. Zero or more allowed. |
Outputs #
Name | Type | Description |
---|
result | string | The name of the next element in the list. |
Sample #
Script step #
General Info #
Category | Description |
---|
System | Executes custom code. |
Label | Type | Required | Visibility | Description |
---|
code | script | yes | Always | Custom code to execute. |
Outputs #
Name | Type | Description |
---|
result | object | The final result of the script execution. |
Sample #
Set var step #
General Info #
Category | Description |
---|
System | Defines a new variable in the current execution context. |
Label | Type | Required | Default | Visibility | Description |
---|
Name | text | yes | - | Always | - |
Value Type | choice | yes | Fixed | Always | Possible values: Fixed , Script , Expression |
Script Value | script | config.valueType is SCRIPT | - | config.valueType is SCRIPT | - |
Fixed Value | text | config.valueType is FIXED | - | config.valueType is FIXED | - |
Expression Type | choice | config.valueType is EXPRESSION | - | config.valueType is EXPRESSION | Possible values:
Current User ,
Field Value |
Context Item | object | config.expressionType.name is FIELD_VALUE | - | config.expressionType.name is FIELD_VALUE | - |
Field | entityField | config.expressionType.name is FIELD_VALUE | - | config.expressionType.name is FIELD_VALUE | - |
Outputs #
Name | Type | Description |
---|
resultVariable | record/field | The variable created. |
Sample #