Fetch datainto webmethods from SP and expose as GET API

Please help any one from this issue

This is pretty basic. Create a service that exposes the inputs you want to support. Use that input as input to the SP, if any. Have that service call the SP. Return the results in the format you want callers to use – probably JSON. Maybe XML. Maybe HTML.

Don’t get too wrapped up in the “API” term (which is something of a meaningless buzzword these days) – it’s just an HTTP call. Parameters can be specified in the URL. Or as an form in the body. Or as JSON or XML in the body. You could be flexible and allow the caller to specify the response type via the Accept header.

If you have more specific questions, please post them.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.