Docs Menu
Quick Start Syncloop / Conditional Logic

Building API using Conditional Logic

In this web service, we are sending the country name as a request and getting the capital of that country in response using the Syncloop Platform.

Login into the Syncloop API Development Platform and let us start creating that Service.

Right Click on Package root in the package explorer window and select New Package

New Package

A Package dialog box will appear.

Package

In the Package Name Text-Box, type the name of the package as hands-on and click on Ok Button.

hands-on

Package handson will be created in the package explorer with one dependency folder, a child folder config, and a default child package. Now Right-Click on the handson package and create a new folder api. Type the name of the folder and click the button Ok.

handson package

A new folder named api will be created under the handson folder.

api

Right-Click on the api folder select New 🡪 Services and click on Flow.

Flow

A Create Flow dialog box will appear. Click on the Flow Name text box and type findCapital and left-click on the Ok button.

Create Flow

A service flow named findCapital will be created.

findCapital

Double Click on the findCapital and visualize the workspace on the right side of the development environment.

development environment.

The details of the workspace environment have already been shown in the Quick Start Document. Click save to save the web service.

workspace environment

A message dialog box will appear confirming the save operation.

message

Going ahead in creating the API by creating an input parameter by right-clicking on the input parameter section and selecting String

String

An input parameter String named STRING will be created in the Input Parameter Section of the workspace.

Right-click on the input parameter STRING and select rename and rename it as country_name

rename

The input parameter is renamed to country_name. This input parameter will be sent by the client and the same parameter will be evaluated for its capital and that will be sent to the requesting client.

Now we are going to create the switch statement on the workspace. Right-Click on the Statement Control Section of the workspace, a FLOW DESIGNER context menu will appear. Select Switch from the context menu.

Switch

A structure of the switch statement will be created in the Statement Control Section of the Workspace.

switch statement

Right-Click on the SWITCH and select properties

properties

A Properties dialog window will appear. Type the name of the Switch Variable in the Textbox and click the Ok button. Here the switch variable is country_name, therefore type the said variable name in the Switch Textbox.

Properties

Now Right-Click on the SWITCH and Select Add 🡪 Case

Case

A CASE statement will be added as a child to the SWITCH Statement. Click on the SWITCH to view the CASE

case statement

Add four CASEs under the SWITCH by repeating the steps mentioned above.

cases

The four CASEs will be added as a child to the Graphical User Interface (GUI) SWITCH statement.

Click on the Save button in the toolbox of the Workspace

Save

A message dialog box will appear confirming the save operation.

okay

Click the Ok button to complete the save operation.

Now populate the cases of the SWITCH by Right-Clicking on the first CASE and selecting Properties in the context menu strip.

Properties

A properties window will appear. Type the name of the CASE value and click the Ok button. Here the value added is INDIA

INDIA

Repeat the above step and add the CASE value as USA. For handling the default values in the GUI SWITCH Statement enter #default in the third CASE value.

#default

Click on the Ok button to confirm when the case value provided is not specified in the SWITCH statement.

When no value is specified for the input parameter country_name then the CASE value to handle such values is specified as null. This handles empty or null values for the SWITCH statement.

country_name

Click on the Ok button to confirm the null value which is specified as #null.

Now the SWITCH-CASE statement is populated with the values.

SWITCH-CASE

These SWITCH-CASE statement values are viewed in a tree structure.

Now mapping is done for input and output parameters. To perform the said operation Right-click on the first CASE: INDIA and select Add 🡪 Map from the context menu strip.

Map

A map will be created as a child to the first CASE.

CASE

Click on the Map and the input and output parameters will be displayed in the Request and Response section of the Workspace.

Response section

Now Right-Click on the Response Section of the Workspace an Output Schema context menu will be displayed. Select String from the context menu.

String

A variable named STRING will be created. Right-Click on the STRING variable and rename it as capital.

rename

Save the web service as specified above.

Select on the variable capital and click on the pen toolbar in the Response Section. A Set dialog window will be displayed. Type the name New Delhi in the Set Value Text Box and Click on the Ok button. This value is the capital of India.

capital

Repeat the above steps and assign the value to the capital as shown in the table below

Case Value
India New Delhi
USA Washington DC
#default The capital does not exist
#null Enter any Country Name

Save the changes and Right Click on the Output Parameter Section of the Workspace. An Output Schema context menu will appear. Select String from the context menu.

Output Parameter

A STRING variable will be created in the Output Parameter Section.

STRING

Right-Click on the STRING variable and rename STRING to capital. This capital is the Output Parameter Section that will store the capital of the requested country_name value. The rename operation is already shown above.

capital

The name of the variable capital should be the same as the capital name specified earlier in the Response Section of the Workspace.

Response Section

Save the API as shown above so that changes are successfully saved.

Click on the configuration toolbar in the Workspace to get the endpoint.

endpoint

A configuration window will appear. Copy the endpoint path specified in the Service endpoint by clicking on Copy icon at the end of the Service Endpoint Textbox.

Service endpoint

Once the Service Endpoint is copied, open the postman API testing application and paste the link in the URL.

postman API
                                testing application postman API
                                testing application

In the postman application, click on the Authorization 🡪 Bearer Token

Authorization

Go to the Syncloop platform and select API token from the Toolbar.

Syncloop platform

Click on the API Token tool, API Token dialog box will be displayed with a Bearer token value. Copy that bearer token value.

API Token

Paste the token value from Syncloop Workspace into the bearer token textbox in the Postman Application.

Postman Application

Go back to the params tab in the Postman Application and do the following steps.

  1. Click the Checkbox
  2. Write the country_name variable name in the key section
  3. Write the Country Name value ie. INDIA
  4. Click on the send button
  5. The output will be displayed in the Response Section. (here output is New Delhi).
INDIA

Now Try giving different key values in the Postman app and Observe the Outputs

When country_name is USA

USA

When country_name value is not specified in the SWITCH Statement.

country_name

When nothing is passed as a key and value for country_name

passed