Skip to main content
Applies mappers when the conditions apply. Use this to transform a value only in certain cases: you set one or more conditions and one or more transformations, and the transformations run only when every condition is met. When any condition is not met, the value is passed through unchanged. This is useful for rules such as “only relabel the tier when it equals VIP” or “only round the price when it is not empty”.

Fields

Sample data

FieldValue
Conditionsvalue equals VIP
MappersMap value using comparator (VIP to Priority)
When the condition is met, the value is transformed: Input:
{ "tier": "VIP" }
Output:
{ "tier": "Priority" }
When the condition is not met, the value is unchanged (for example "Standard" stays "Standard").