Versions Compared

Key

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

...

In order to create a connector, please open the page Connector under the Design. Created connector than will be available to use in the SmartformForm.

...

Connector can be created via plus sign or directly with the REST button:

...

This authorization method allows you to avoid constant user name and password transfer with a token to secure the access. You can configure this authorization method with user information alongside with the OAuth token information.

...

Using the connector in the

...

form

Custom connectors can be used in the smartformform. In order to show our example, the product list, in the “Select” element of the smartformform, “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

form drop-down list.

$.products[*].name

JSON Path: value

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

$.products[*].name

Info

The names of all the products will be shown in the dropdown list of the

smartform

form and will be stored in the database when the user makes a selection.

Info

Syntax for JSON path starts with a $ sign. You can specify the which data body should be taken into consideration. In our example, it is the product body. [*] means all rows under the product 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.

...