Products Examples

1. Hello World Example
Description: In this simple example we are using a rest call to display the input string message as “Hello world”.
If we change the input string then accordingly the same msg will be shown in the output . .
For example use the http post method to send the input json as
{
“msg”:”Hello World”
}
The output will be json
{
“input_msg” :”Hellow World”
}


Workflow:



2. Greeting Example
Description: This example show concatenation operation between two string one from input and one which is default or hard coded string.
SO we have the http post service with input body as json
{
“personName”:”John”
}
The ouput will be json
{
“Greeting”: “Welcome to the new community John”
}


Workflow:



3. Fetch data from end system - database
Description: This example shows how we can fetch data from database.
Database is pre-configured. We pass the table name from which we need to get the data .


Workflow:



4. Fetch data from end system - File
Description: This example shows how we can fetch data from external file.


Workflow:



5. Fetch filtered data from end system – database
Description: This example shows how we can fetch data from database
Database is pre-configured. We pass the table name as well as filter criteria to get the data .


Workflow:



6. Fetch filtered data from end system – file
Description: This example shows how we can fetch data from external file.
We pass the file name as well as filter criteria to get the data .


Workflow:



7. Insert single record into database
Description: This example shows how we insert single record into database according to the input body in post request as json.


Workflow:



8. Update single record from database
Description: This example shows how we update single record from database according to the record id passed in the URI parameter
with post request and the updated values in the body json


Workflow:



9. Delete single record from database
Description: This example shows how we delete single record from database according to the record id passed in the URI parameter with delete request


Workflow:



10. Fetch data from end system – MQ
Description: This example shows how we can fetch data from messaging queue. We pass the queue name to get the data .


Workflow: