Situation:- To execute the process flow using the HTTP Post URL and to fetch the data (like any file or XML data) from this HTTP or Rest URL.
Solution:- You need to invoke below URL to execute the process flow through HTTP call:-
http://<<host>>:<<port>>/adeptia/triggerProcessServletByRest/ProcessFlowID
As an example, http://192.168.170.75:8081/adeptia/triggerProcessServletByRest/192168000003152397224825500106.
Also, when you are using the URL with any of the REST client (postman, SOAPUI) then you can use the POST method and in the body of that method, you can copy the data which you need to fetch in the process flow.
http://192.168.170.75:8081/adeptia/triggerProcessServletByRest/ProcessFlowID.
All the data which you have defined in the body of POST method will be reflected in the variable 'restRequestInput' of the process flow. You can utilize this variable as per your requirement in the process flow.
Comments
0 comments
Article is closed for comments.