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

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