...
Which
PublisherEventCategory
values it cares aboutA Handlebars template that specifies how to convert
Events
of that category into a JSON format that can be imported through the Subscriber’s API/WorkflowImportQueue/CreateBatch API.For more information about Handlebars Templates https://handlebarsjs.com/guide/#what-is-handlebars
For more info on the data manipulation Helpers available, please refer https://github.com/Handlebars-Net/Handlebars.Net.Helpers
Those templates are stored as the batchRowTemplate
property in the LbApiPayloadTemplate
property of f an EventSubsription
:
Code Block | ||
---|---|---|
| ||
"LbApiPayloadTemplate": { "{EventCategory1}": { "action": "import (default) | ignore", "label": "human readable note", "importProcessId": {WIQ Process Id}, "batchRowTemplate": "{handlebars template}" }, // ... additional category mappings as needed ... "_default": { "action": "import (default) | ignore", "label": "human readable note", "importProcessId": {WIQ Process Id}, "batchRowTemplate": "{handlebars template}" } } |
...