Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Connectors can be created by using the REST connection. In the following, we will explain the process further. We will create a connector from with the REST connection which contains a product list as an example.

Creating a new connector

...


The configuration page allows you to enter the desired connector name. URL which contains the webpage for product information should be entered in the hostname area. HTTP method, limitation for the result size and authentication methods should be selected. Clicking the Save button will save the custom connector.

...

Custom connectors can be used in the smartform. In order to show our example, the product list, in the “Select” element of the smartform, “Connections” section should be opened. The label and the value will be selected from the REST file, which contain information of the products.

...

Parameter

Description

Example

Connection 1

Custom connectors can be reached via this drop-down list.

Products

JSON Path: label

This area determines the parameter which should be shown in the smartform drop-down list.

$.products[*].name

JSON Path: value

This area determines the parameter which will be stored in the database.

Info

The names of the products will be shown in the dropdown list of the smartform and will be stored in the database when the user selects the product name.

$.products[*].name

Info

Syntax for JSON path starts with a $ sign. [*] means all rows should be included. The last part after . specifies the column name which the data will be derived.
Blank space should be avoided from the column names to reach the information via JSON.
Customer Code → Customer_Code