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
Author: Krishnakanth V
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
Dart Exceptions
An exception (or exceptional event) is a problem that arises during the execution of a program. Sr.No Exceptions & Description 1 DeferredLoadException Thrown when a deferred library fails to load. 2 FormatException Exception thrown when a string or some other data does not have an expected format and cannot be parsed or processed. 3 IntegerDivisionByZeroException… Continue reading Dart Exceptions
Dart – Class
In object-oriented programming, a class is a blueprint for creating objects. A class defines the properties and methods that an object will have. Declaring Class In Dart You can declare a class in dart using the class keyword followed by class name and braces {}. It’s a good habit to write class name in PascalCase. Syntax: The class keyword is… Continue reading Dart – Class
Dart – Null Safety
Null safety prevents errors that result from unintentional access of variables set to null. Nullable Types (?) : To specify if the variable can be null, then you can use the nullable type operator. You don’t need to initialize a nullable variable before using it. It is initialized to null by default. The Assertion Operator (!) :… Continue reading Dart – Null Safety