Hi,
Can I create Proxy API for a RESTful Backend Service?
I believe we can create an API proxy for GET method of any RESTful Backend Service as we can call that service in the form of URL. But how do we create Proxy API for all other HTTP method RESTful Backend service like POST and etc?
Solved! Go to Solution.
Certainly. This can be done with a number of implementations
One option would be to create conditional flows for each resource/verb combination. The condition should check that the request verb matches what is expected, Also, you would need to create corresponding resources for each.