Docs Menu
Quick Start Syncloop / Looping Logic

Building API using Looping Logic

This is the 3rd Web Service that is connected to the conditional logic Web Service. In this service, we will send multiple countries and try to get their capital using the API created previously for 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 Development Platform and let us start creating that Service.

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

package

A Package dialog box will appear.

package name

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.

create a new folder

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, type findCapitals and left-click on the Ok button.

Create Flow

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

Quick Start

A message dialog box will appear confirming the save operation.

A message dialog

Double-click on the findCapitals in the Package Explorer and open the Workspace Window.

findCapitals

Right-Click on the input parameter section and an INPUT SCHEMA content menu will appear.  select From-> JSON from the context menu.

INPUT SCHEMA

A JSON Input Dialog will appear prompting for “Enter JSON Payload here”. As we have to enter multiple countries as input, we will be using arrays for such inputs. This input is also termed Input Payload for the Web Service.

Input Payload

Type the input payload for the Web Service in an Array. Here specify “country_name”:”” in an array and click on Apply button.

country_name

This will create an Input Payload for the Web Service and is viewed in the Input Parameter section of the Workspace Window.

Workspace

Right-Click on the Statement Control Section of the workspace. A FLOW DESIGNER context menu will appear. Select Map from the context menu and left-click on it.

Map

The MAP will be displayed in the Statement Control Section and payloads will be displayed in the Request Section and Response Section of the Workspace window.

Request Section

We clearly visualize the country_name parameter in the Request and Response section of the Workspace Window. As we need to transfer the value of country_name to some other container. Drop the Response Section Payroll by selecting the payload and clicking on the thumbs-down tool tool in the Response Section. It will not be used in further steps.

thumbs-down

The thumbs-down image will be displayed with the payload.

payload

Right-Click on the Response Section and the OUTPUT SCHEMA context menu will appear select the Document option.

Response Section

A DOCUMENT Parameter will be created in the Response Section

DOCUMENT

Right-Click on the DOCUMENT parameter and select rename option.

rename

Rename it as countries.

countries

Right-Click on the countries parameter and select Properties from the context menu.

Properties

The Properties window of the countries parameter will be displayed.

Properties

Select the “It’s an array” check box and click the OK button.

It’s an array

Right Click on countries, and a context menu will appear. Select New 🡪 String from the menu

New String

Save the Web Service by clicking on the Save tool at the top of the Workspace toolbar.

Workspace

A message dialog box will appear confirming the save operation.

confirming

Rename the STRING as country_name

STRING

Rename the STRING parameter as country_name

Click on the payload 🡪 country_name in the Request Section and drag the cursor to the countries 🡪 country_name in the Response Section of the Workspace window.

Response Section

A link will be created and will also be visible by a line joining/mapping the two Request and Response parameters. While mapping the child elements *payload 🡪 country_name will be mapped with countries 🡪 country_name, the parent elements *payload and countries will also be mapped.

Now we need to run the loop onto the countries document (array). So Right-click on the workspace and select loop.

countries

A loop will be created in the workspace.

created in the workspace

Now Right-Click on the loop and select properties.

select properties

The properties dialog will be displayed

properties

In the input list textbox enter the element on which the loop will be implemented. It can be done using two ways.

1. Go to the Response Section of Syncloop IDE, copy the element’s XPath, and paste it into the input list textbox.

2. Type directly the name of the element in the input list TextBox (Here it is countries)

Type countries  in the input list text box and click on the OK button

input list

Right Click on the loop and add invoke

invoke

An INVOKE element will be created under LOOP

Loop

This invokes elements will be used to invoke the previous web service that has been already created in the conditional logic documentation named as findCapital.

Right-Click on the INVOKE and select a Service menu option

select a Service

A dialog will be displayed. Select the previous web service findCapital and click on the Done button to confirm.

confirm

The path of the web service in the package will be appended as the child of the INVOKE

web service

Now we need to send the county in the loop and get the capital. Click on the packages/handson/api/findcapital link and observe the elements in the Request and Response Section of the Syncloop Workspace.

packages/handson/api/findcapital

Let us map country_name with country_name in the request section of the workspace.

country_name

A link has been established between two country_name elements in the Request Section of Workspace.

Right click on countries and create one more STRING parameter.

STRING parameter

Rename the parameter as capitals

Rename

Now map the capital with countries 🡪 capital from click and dragging capital to countries 🡪 capital to create a link shown below.

capital

Now both mappings are displayed

mappings

Create an output parameter as document type by right-clicking on the Output Parameter Section.

Output Parameter Section

A document type parameter will be created.

created

Right-Click on the DOCUMENT and select rename and rename it to countries.

countries

DOCUMENT has been renamed to countries.

Right-click on countries and select properties .

properties

Check it’s an array option and click on OK button. Now click on the save tool on the workspace tool bar.

OK

A save confirmation dialog will be displayed. Click on Okay button to confirm it.

confirmation

Click on the configuration button configuration from the tool bar. Configuration dialog will be displayed.

configuration

On the configure properties dialog change method to POST as we are sending the request payload. Copy the copy button on the service endpoint and copy the path.

copy the path

Click on OK Button.

OK Button

A save confirmation dialog will be displayed. Click on Okay button to confirm it.

confirm it

Now open the Postman application and Click on the + to create a new HTTP request as Untitled Request

HTTP request

Copy the endpoint path in the Enter Request URL text box and change GET to POST in the drop-down menu.

Enter Request URL

Now change the authorization by copying the API Token from the Syncloop workspace

API Token

Paste the same into the Authorization 🡪 Bearer Token 🡪 Bearer Token text box.

Authorization

No in the Postman application go into the Body 🡪 Raw section and create your payload in the text box as shown below. Also, change the Text drop-down property to JSON.

Text

Now enter the payload for multiple countries in JSON format.

                                        
                                    [
                                    {
                                        "country_name" : "INDIA"
                                    },
                                    {
                                        "country_name" : "USA"
                                    },
                                    {
                                        "country_name" : "JAPAN"
                                    }
                                    ]
                                    
                                    

Place the JSON code in the text box and click on Send Button

Send

Observe the response

Observe the response

Multiple Countries and Capitals are displayed in a single request when the payload is sent in JSON format.

Multiple Countries