Celigo provided a feature to developers get assist to solve issues in the development of flows in Celigo with Celigo support team. To get this help, we need to submit ticket to Celigo. we can submit a support ticket while signed into integrator.io using the Help menu in the application sidebar. Select Submit ticket and continue on to create your ticket… Continue reading How can we submit ticket in Celigo
Category: Celigo
Convert the string data type to integer in integrator.io
Using the following handle bar, we can convert the string to integer using JSON : “width”: {{#if record. Width}}{{{record. Width}}}{{else}}0{{/if}}
How can get the values dynamically from lookup in Celigo
We create lookup in Celigo for get the line item details. Each line item stored in array format. Using the following code, we can read the line items in runtime using each loop. “lines”: [ {{#each record.lineDetailsLookup}} { “productID”:”{{this.Item_Name}}”, “requestedQuantity”:”{{this.Item_Qty}}” }{{#unless @last}},{{else}}{{/unless}} {{/each}} ]
Create a connection Between Celigo to NetSuite
Step 1: Installed the Bundle integrator.io Step 2 : Click the connection option and enter the details : Name ,Authorization type and Account ID Step 3 : Click save and authorize button Step 4 : Click Allow button .It automatically create the connection to NetSuite
Navigate integrator.io
After you sign up for integrator.io, you can browse through different integration options or use tools and resources to create a flow for an integration. Account management The following menu displays in the top right corner of your account. Use this menu to switch between your Production environment or your Sandbox environment, review notifications, or view… Continue reading Navigate integrator.io
NetSuite sub records to JSON
Sub records hold information about a parent record and are meaningful only within that context. The sub record must be created, edited, removed, or viewed from its standard NetSuite record. These sub records must be configured and mapped in integrator.io. You can map sub records imported into NetSuite natively through integrator.io. When transformed, the JSON… Continue reading NetSuite sub records to JSON
Custom flow in Celigo
Flow Builder allows you to create and customize a flow to transfer data from one platform to another. You can use Flow Builder to export and combine data from multiple applications, and import data into multiple applications. Building a simple flow requires a minimum of three steps: Choose source and destination applications – Select the applications you’re… Continue reading Custom flow in Celigo
Create a report of flow events
The reports are separate for integrator.io Sandbox and Production environments. To create a Sandbox report, for example, you must first be working in your Sandbox environment. Select Tools > Reports from the left navigation menu. In the header row of the Flow events report results list, click + Run report. In the resulting Run report pane, customize the required settings for your report: Integration – All… Continue reading Create a report of flow events
Create HTTP import mapping with static or dynamic lookup
This article explains how to use the lookup handlebar at the record level to implement static and dynamic lookups in an HTTP application import. This lookup option occurs during import mapping, in order to perform an additional query prior to syncing records. Do not confuse this import setting with the results mapping for a lookup flow step, which retrieves records or… Continue reading Create HTTP import mapping with static or dynamic lookup
Response mapping
You can add response mappings to capture data returned from an import within your flow. For flows that have multiple imports, response mappings allow you to insert the response data of an import back into your source record so that you can reference that data in subsequent steps of your flow. For example, if an… Continue reading Response mapping