Run Multiple Steps
This handler (com.rierino.handler.CompositeEventHandler) provides ability to execute sequential actions using different event handlers at once.
Handler Parameters
Actions
RunSteps
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"definition": "Name of the system to make REST call to (url and auth parameters of this system are used)",
"example": "erp",
"default": null
},
"inputElement": {
"type": "string",
"definition": "Json path for the input in request event payload",
"example": "parameters",
"default": null
},
"outputElement": {
"type": "string",
"definition": "Json path for the output in response event payload",
"example": "product",
"default": null
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"common.[field]": {
"type": "string",
"definition": "Event metadata fields applicable for all steps",
"example": "inputElement=parameters",
"default": null
},
"step_[step]_action": {
"type": "string",
"definition": "Name of the action to run for step [step]",
"example": "GetQuery",
"default": null
},
"step_[step].[field]": {
"type": "string",
"definition": "Event metadata field applicable for step [step]",
"example": "{id:parameters.productid}",
"default": null
}
}
}
}
}
}
}Last updated

