In celigo, we have an option called “Populate with Preview data” in the Export Flow under “Mock Output”. It is used in the cases like when you change the criteria of the saved search that you are using in the flow. In these cases, sometimes the input data is not changed in the import Flow.… Continue reading Celigo – Populate with Preview data option
Author: Krishnakanth V
Response mapping in Celigo
In Celigo we can map the response data in the destination fields. Let’s say I need to map a http response of WISEPOID after a successful import of Purchase Order to UNIS (or any other e-commerce site). Create a custom field in the destination Record where you want the data to store in. After the… Continue reading Response mapping in Celigo
Remove Duplicate records from Entity Saved Search
When creating a Customer from Lead to Customer and run an Entity Saved Search displaying the Customer Records, it might show duplicate records with same InternalID. In Order to avoid that add the following line in the criteria of the saved search. Criteria: Name/ID : does not contain (Originating Lead).
Secret URL Verification type in Celigo Webhook Connection
Celigo’s webhook listener typically supports secret URL verification as a security measure to ensure that webhook endpoints are legitimate and owned by the intended recipient. This process involves including a secret key or token in the URL, and the webhook listener verifies this secret before accepting requests. Here’s a general overview of how you might… Continue reading Secret URL Verification type in Celigo Webhook Connection
Setting up Http connection in Celigo
A. Set up an HTTP connection Start establishing the universal, or generic, HTTP connection in either of the following ways: Select Connections from the Resources menu. Next, click + Create connection at the top right. In the resulting Create source panel, select HTTP from the Application list, under the Universal connectors group. While working in a new or existing integration, you can add an application to a flow simply by… Continue reading Setting up Http connection in Celigo
Error Classifications in Celigo
Value Sample error messages Typical cause Invalid phone value: remove dashes The value provided causes a specific problem Order status == cancelled in target system. Target system rejects all updates An unexpected value prevents any changes to the record in the destination system Transaction was declined by processor. Issuer Declined Cannot change status field The… Continue reading Error Classifications in Celigo
Inherit Authorization in Postman
Click the collection, select an authorization type from the Authorization tab. Fill in the requested fields. Choose Inherit auth from parent option for your request. Authorization is done for all your request.
Create Customer in Shopify using Postman.
Login to the Shopify account.Create a store in shopify. Created a new app , by going in to settings >Apps and sales channels>Develop Apps. Save the API key and Password in a file, Get the Admin access token and save it in a secured file. Go to the postman app or website and the create… Continue reading Create Customer in Shopify using Postman.
Flutter – Best Practices
Defining the App Architecture Clearly: Flutter architecture is divided into three layers: Presentation layer Business logic layer Data layer. A clearly defined architecture is a crucial prerequisite to making Flutter app development an easy process. Usually, developers use BLoC architecture to implement the Flutter architecture in app development. Flutter BLoC Best Practices: By using the… Continue reading Flutter – Best Practices
Dart – Runes
Dart represents strings as a sequence of Unicode UTF-16 code units. Unicode is a format that defines a unique numeric value for each letter, digit, and symbol. A rune is an integer representing a Unicode code point. The String class in the dart:core library provides mechanisms to access runes. String code units / runes can be accessed in three ways… Continue reading Dart – Runes