Is there any way to create an Web API for all the supported http methods? Try to avoid multiple web api one for GET, and one for POST so on..
Discussion posts and replies are publicly visible
No you would have to create different Web APIs. However, you can have different Web APIs share the same endpoint as long as they are different methods.
Thanks Peter, I wasn't aware of the method/endpoint combination ability, but I see that in the docs now. That's definitely better than going the plug-in route.