Reputation: 91
I am trying to build an SSIS package that can call a Web API (with or without parameters), get the JSON result, parse and store data from the JSON to SQL tables. Does anyone if this is possible without third party tools such as ZappySys? If so, can you point me to any resources/tutorials/examples as I have not been able to find any.
Upvotes: 4
Views: 12952
Reputation: 16828
I just recently had to do this. I initially looked at using third-party libraries, but instead chose to implement a custom Script Task. This task used the .NET HttpClient to call the REST API. There are some caveats to doing this:
Upvotes: 3