Can I create Proxy API for a RESTful Backend Service?

Not applicable

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 Solved
0 2 231
1 ACCEPTED SOLUTION

Not applicable

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.

View solution in original post

2 REPLIES 2

Not applicable

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.

Not applicable

Hi @panneer selvam,

I am sure you've already figured this out by now, but others might find this Apigee documentation link that talks about understanding and defining API Resources with appropriate HTTP methods when implementing API Proxies helpful.