«««< HEAD «««< HEAD
«««< HEAD The configuration component allows separating the modification of configurable values from the modification of the flow. ======= 0.0.3 (October 30, 2020)
To see the full changelog please use the following link.
340e7db6963c6b497fe65b0472ea33c940a2c291
======= =======
a48af29eaa496fe803a5dc6fa840a9bb65e8d20b
How works. API version / SDK version
c043adb98d7b64beed79053a4d1719f77355e324
Configuration component has a credential which is a text field with the following rules:
The screenshot below shows the configuration component Choose Credential stage during the integration flow design. The text field will be evaluated to check if the above conditions are met.
Afterwards, it emits a message with an object equivalent to the JSON in the config. So any data which is used in the flow and is repeated in multiple places can be configured (or later changed) in the single step. After that new values are used where it is needed.
You want to make an email marketing that can allow the customers on your email list to be aware of new products, discounts, and other services. You have a base of your clients but your CRM system cannot automatically control the special clients which you want to mail with special promotions or offers. This can be done by adding a configuration component where you can set the list of your special clients that are very important for you and control it manually by modifying the clients list.
If you are interested in a more detailed example of using a configuration component, please read this article.
«««< HEAD
=======
c043adb98d7b64beed79053a4d1719f77355e324
«««< HEAD No environment variables are necessary to configure the component. =======
Please Note: From the platform version 20.51 we deprecated the «««< HEAD component
LOG_LEVEL
environment variable. Now you can control logging level per each step of the flow.ada1e51c3e75b1a99c039ad339624249f5ccde1a
component
LOG_LEVEL
environment variable. Now you can control logging level per each step of the flow. af4ddea2888125ab3e3c32305ce4c64d5645b777
Configuration data should be specified as credentials of a JSON format. JSON must be valid in order for credentials to be verified (except arrays, see the Known limitations below). Credentials verification will fail otherwise.
Input data example. Consider the following example:
If the configuration component existed, you build flows of the following form:
ERP.GetPriceInfo()
-> Config.LoadConfig()
-> E-SHOP.SetPrice(price := ERPResults.Price * ConfigResults.ExchangeRate)
If one needed to change the exchange rate, that value could be edited by modifying the configuration credentials to include the new rate and then resetting the snapshot for all the price import flows. Currency rates sample:
{
"USDEUR": 0.881715,
"USDFJD": 2.115102,
"USDPLN": 3.787097,
"USDQAR": 3.641042,
"USDUAH": 30.718014,
"USDZWL": 322.355011
}
Then the currency rate can be used in any number of flows, where it is needed and then changed form the single place. That changes will affect all the flows where it is used.
The technical notes page gives some technical details about Configuration component like changelog.
The configuration component has no trigger functions. This means the component can not be selected as a first step in any integration flow.
The only action that is supported by this component is to emit data. This action emits the configuration data as a valid JSON object in a message. The output json schema can have any complexity.
But there are some platform limitations with naked arrays, which do not allow access to the data in such arrays that has been emitted from a component, from the next step. This is why the naked arrays should not be passed to the component directly.
[
{
"Product Name": "Bowler Hat",
"ProductID": 858383,
"SKU": "0406654608",
"Description": {
"Colour": "Purple",
"Width": 300,
"Height": 200,
"Depth": 210,
"Weight": 0.75
},
"Price": 34.45,
"Quantity": 2
}
]
use something like:
{
"Product": [
{
"Product Name": "Bowler Hat",
"ProductID": 858383,
"SKU": "0406654608",
"Description": {
"Colour": "Purple",
"Width": 300,
"Height": 200,
"Depth": 210,
"Weight": 0.75
},
"Price": 34.45,
"Quantity": 2
}
]
}