Docs Menu
Quick Start Syncloop / Return Custom HTTP Status codes & Headers

Return Custom HTTP Status codes & Headers

Welcome back to our new tutorial. This tutorial will show you how to send custom HTTP status codes and headers and get a response.

Let us get started by logging into the Syncloop workspace

Syncloop workspace

Provide your login credentials and login into the Syncloop Workspace.

Right-Click on the handson 🡪 api folder and select New 🡪 Flow Service

handson 🡪 api

A Create New Flow Dialog will be displayed. Enter the service name and assign the developer group and click on OK button to confirm.

developer

A new flow service namely forHttpCodewill be created in the package explorer.

Save the service by clicking on the save button in the Workspace

forHttpCode

A save confirmation dialog will be displayed click on the OK button to confirm.

confirmation

Now click on the configuration tool in the workspace.

configuration

A configuration dialog will be displayed. Copy the Service Endpoint by clicking on the copy icon in the configuration properties dialog.

Service Endpoint

Now open the Postman application and create a new Service Request. Paste the above header in the Enter Request URL.

Set the authorization in the Postman application by copying the API token from the Syncloop workspace.

Postman

Now paste the copied API token value in the Postman Authentication 🡪 Bearer Token value.

Authentication

Now click on the Send button and observe the status code in the response.

Send

We observe that the HTTP status code is displaying 200 OK. Now let us try to change this status code.

Let us move back to the Syncloop Workspace and create a new TCF-Block. (Try-Catch-Finally). To do that right-click on the Workspace and select TCF-Block

Workspace

A new TCF-Block will be created

TRY

Let us now try to send an error forcefully and observe the output.

Create a MAP in the TRY block. Click on the TCF Block so that a tree structure is displayed.

MAP

Right-Click on the TRY and select Add 🡪 Map

TRY

A MAP will be created under TRYin a tree structure.

MAP

Click on the MAP and create a new variable of type STRING in the Response Section of the Workspace.

STRING

Rename the STRING element to the message by right-clicking on it and selecting Rename

Rename

Select the message element and click on the initialize the element initialize element icon. A Set dialog will be displayed.  Type the error message in the value textbox and click on OK button to confirm.

Set

Let us call one service name throwException. Again Right-Click on the TRY block and select Add INVOKE to add a new inbuilt service.

throwException

Now Right Click on INVOKE and select “Select a Service”

INVOKE

Search the exception name in the search bar as throwException. Select the throw exception in the package explorer and click on the Done button to confirm.

throwException

The service will be included under TRY 🡪 Map.

throwException

Click on the newly created throwException service and map the message element with msg element by clicking and dragging the cursor from the message element to msg element.

msg

As we created the Map in the TRY block, we will now create a Map in the CATCH block. Right-Click on the catch block and select Add 🡪 Map.

Map

A new Map will be added under the CATCH block.

Click on the throwException Service and select the message element in the Response Section.  Click on the Drop an element icon  Response Section as this element is not used now.

Response Section

A down-hand thumb icon thumbwill be displayed with the message element. In this case, we want to throw 400 Bad Request error in the response.

Click on the CATCH 🡪 Map and create a new element variable of type STRING for and Rename it to statusCode.

statusCode

Click on the initialize the element icon initialize,  set the value equal to 400 and click on OK button.

OK

Right Click on the CATCH and add new INOVKE.

CATCH

An INVOKE will be added.

INVOKE

For sending the status code we need to call one service as responseHeader. Search the service name in the package search bar as responseHeader. Select the responseHeader in the package explorer and click on the Done button to confirm.

responseHeader

The reponseHeader service will be added to the CATCH block.

reponseHeader

This service enable us to send the service code and the header information. Click on the newly added service and observe the elements in the response.

header information

Now map the statusCode

statusCode

Save the service

Save service

A save confirmation dialog will be displayed click on the OK button to confirm.

confirmation

Now go the Postman Application send the request again and observe the response. Here we see that we are getting 400 Bad Request in the response.

400 Bad Request

Go back to the workspace. Click on CATCH🡪MAP and Set and reinitialize the statusCode element value from 400 to 503

workspace

Save the service

Save the service

A save confirmation dialog will be displayed click on the OK button to confirm.

OK

Now go the Postman Application send the Service Request again and observe the response. Here we observe that we are getting 503 Service Unavailable in the response.

Postman

We have clearly observed here that our status code is changing in the Response as we are changing in the workspace.

Now let us send some headers also. Click on CATCH🡪MAP and create new STRING element in the Response Section of the workspace. Rename the STRING to serviceType.

serviceType

Click on the serviceType element and select pen icon serviceType to set the value to Test_Flow and click on OK Button

Test_Flow

Let us create one more value in the Response Section and Rename it as Is_Rest. Select Is_Rest element and select pen icon Is_Rest to set the value to true and click OK to confirm.

Is_Rest

Select the responseHeader Service and pass the two elements serviceType and Is_Rest to the headers element. For that create two elements serviceType and Is_Rest of type STRING under headers element and map them with serviceType is Is_Reset.

serviceType

Save the service

Save the service

A save confirmation dialog will be displayed click on the OK button to confirm.

confirmation

Now go the Postman Application send the request. Click on the Headers and observe that the two elements serviceType and Is_Rest which we had created in the workspace are having same values as we have assigned in the workspace.

Is_Rest

And this is how you can manage the HTTP Status Codes for the response and the variables in the HTTP headers.