SendEventOnVerifyingAttributeValue
Changed on:
7 Aug 2025
Overview
The rule sends and event with the name specified in the input parameter in case the incoming entity has an attribute name and value that matches with the name and value provided in the input parameters. Otherwise, a no match event is sent.| Plugin Name | Order Reference Module |
|---|---|
| Namespace | [[account.id]].order |
UI Description
Sends an event with name "PROP_EVENT_NAME" in case the attribute name and value matches the given name and value. Otherwise sends "PROP_NO_MATCH_EVENT_NAME" event.
Accepts
- ORDER
- ARTICLE
- FULFILMENT
- FULFILMENT_OPTIONS
Actions
- This rule sends an event eventName if the incoming entity has the given attribute {attributeName} and the attribute value matches the given value {attributeValue}.
Rule parameters
| Parameter | Description |
| PROP_EVENT_NAME | Output event name to be created and sent if the attribute name and value matches. |
| PROP_NO_MATCH_EVENT_NAME | Output event name to be created and sent if the attribute name and value doesn't exist or match. |
| PROP_ATTRIBUTE_NAME | Attribute name to be matched in the incoming entity. |
| PROP_ATTRIBUTE_VALUE | Attribute value to be matched in the incoming entity. |
Event attributes
Exceptions
Configuration example
1{
2 "name": "<ACCOUNTID>.order.endEventOnVerifyingAttributeValue",
3 "props": {
4 "eventName": "testEventName",
5 "noMatchEventName": "NoMatch",
6 "attributeName": "testAttributeName",
7 "attributeValue": "testAttributeValue"
8 }
9}