The code component is derived from the Code-component v1.2.11
. The difference is that an authorization mechanism has been added. Refer to the Credentials for more details.
The code component is a powerful feature of the platform that allows you to run a piece of JavaScript code within your integration flow. It functions just like any other component in our system.
The code component is automatically deployed to production, so there is no need to deploy it yourself (although you can if you have extended it). When building your integration in our Dashboard, simply include the Code component. You will see a similar picture to the one below:
However, don’t be fooled by its simple appearance - it has a full-fledged interface with many useful features, just like your favorite desktop development tool:
The code component provides access to the following variables and libraries within the execution context. The most up-to-date list can always be found in the code.js
file of the component. Below is a sample for reference. Built-in Node.js global objects are also supported.
msg
- Incoming message containing the payload from the previous step.
cfg
- Step configuration, which currently includes the following properties:
code
(the code being executed).secretId
- The ID of the secret being used by the credentials.credentials
- The credentials section. Depending on the selected credentials type, it contains a set of credential fields.snapshot
- Step snapshot.messages
- Utility for convenient message creation.emitter
- Used to emit messages and errors.wait(numberOfMilliscondsToSleep)
- Utility function for sleeping.axios
- A well-known HTTP Client Documentation.request
- HTTP Client (wrapped in co
- this library so that it is pre-promisified). We recommend using axios
. Support for request
is maintained for backward compatibility only._
- LodashPlease note that the code component can solve a wide variety of tasks, ranging from basic data transformations to complex external API calls. Normally, you won’t need any credentials working with the component. However, if you don’t need any credentials, you can simply create and save the No Auth
credentials.
We have introduced credentials of the same type that are used in the REST API component since using them for plain REST API calls is the most common use case across our platform. However, it doesn’t mean that you can only use these credentials for REST API calls. Feel free to use them as needed if they fit your requirements.
Code component supports 4 authorization types:
Credentials always verifies successfully. The component is not any system-agnostic. This is why we can’t do any meaningful verification.
To create OAuth2
credential you have to choose Auth-client or create the new one. It must contain Name
, Client ID
, Client Secret
, Authorization Endpoint
and Token Endpoint
.
The example above shows how to add a new Auth-client to access the API.
To give you a better idea of how to use the different auth types:
username/password
fields within the cfg.credentials
object:
const { username } = cfg.credentials;
const { password } = cfg.credentials;
headerName/headerValue
fields within the cfg.credentials
object:
const { headerName } = cfg.credentials;
const { headerValue } = cfg.credentials;
cfg.credentials
object. For Salesforce OAuth credentials, it would look like this:
{
...
"credentials": {
"access_token": "00DE0000000dwKc...25beUAzsBb6L4yTQUWwRf",
"refresh_token": "5Aep861rEpScxnNE66jGO...LPWsLPojH6C3hT.8L_",
"expires_in": 3600,
"undefined_params": {
"signature": "ehhgLZp7T...UrmmEE=",
"instance_url": "https://de0007100dwkcmai-dev-ed.my.salesforce.com",
"id": "https://login.salesforce.com/id/00DE0000917dwKcMAI/032481200092zqdAAA",
"issued_at": "1706879649168"
}
}
}
Please note that using the OAuth2 mechanism can be tricky due to its nature. If you need to use an OAuth2 mechanism for REST API calls, consider using our REST API component instead. It handles all the routines such as refreshing tokens and retries. Please refer to the following documentation for more information on how to use it:
To use the code you can follow these examples:
async function run(msg) {
console.log('Incoming message is %s', JSON.stringify(msg));
const body = { result : 'Hello world!' };
// You can emit as many data messages as required
await this.emit('data', { body });
console.log('Execution finished');
}
Please note: if you have a simple one-in-one-out function you can return a JSON object as a result of your function, it will be automatically emitted as data.
While JSONata is a great tool, sometimes it’s easier to perform tasks in JavaScript. If you want to transform an incoming message with code, you can use the following example:
async function run(msg) => {
addition : "You can use code",
keys : Object.keys(msg)
}