WMB Tutorials | Calling Http Rest Service from WMB Flow

Опубликовано: 17 Октябрь 2024
на канале: ProjectsGeek
10,690
71

In this video on WMB Tutorials we will see how to call very simple GET service from WMB message flow. This is very simple example where we are not even passing any request data to service.

Service to call
http://localhost:7080/services/UserDetails

GET Method

We are using HTTP Request node to call a HTTP REST service which is already deployed on same server.

Service Response

{
"person_id": 1,
"given_name": "Dave",
"family_name": "Badger",
"title": "Mr",
"birth_date": "1960-05-01 00:00:00",
"statusCode": "200",
"statusDescription": "User is found"
}