IfPropertyIsGreaterThan
Changed on:
7 Feb 2025
Overview
Conditionally another when the specified field or is greater than the provided value.
An example of this includes pushing an through a fraud-check flow only when the `totalPrice`
field is greater than `100`
.
Plugin Name | Core Reference Module |
---|---|
Namespace | [[account.id]].core |
The is a foundational .
It provides a base set of general purpose Rules:
- that other Modules are built upon
- or that can be included in your own Workflows
Extensible by design, use this Module as a base to build a solution for the needs of your customers.
UI Description
If {jsonpath} is more than {value}, do {eventName}
Accepts
- All Orchestration Entities
Actions
- This Rule conditionally produces a SendEventAction
Rule parameters
Name | Type | Description |
|
| The path to the value being compared, see JsonPath. |
|
| Value to compare against. |
|
| Name of the to send if the check passes. |
Event attributes
The expected can be defined with the `jsonpath`
parameter value.
Exceptions
- This Rule throws a
`PropertyNotFoundException`
when the Rule parameter(s) is not provided.
Configuration example
1{
2 "name": "[[account.id]].core.IfPropertyIsGreaterThan",
3 "props": {
4 "jsonpath": "totalPrice",
5 "value": "100",
6 "eventName": "CheckFraud"
7 }
8}
Detailed Technical Description
This will conditionally produce a SendEventAction.
The condition is defined by the specified `jsonpath`
and `value`
properties.
The `jsonpath`
parameter may identify:
- A field on an Entity
- Or an Event attribute
If the specified `jsonpath`
property is greater than the `value`
provided, the will be produced for the same Context as the currently executing , but with a new name defined by the `eventName`
parameter.
Workflow Builder (Modeller) Screenshot

Version History
v25.2.17
This NO longer produces a custom Audit Event if the condition is not met.
The Version refers to the Product Release Version.
v25.1.20
This has been fixed to support JsonPath provision for attributes.
The Version refers to the Product Release Version.
v23.8.1
Refers to the Product Release Version