I am investigating ways to move data from SQL Server into system exposed via a RESTful HTTP API.
If I were to use SSIS would I have to write a custom connector to push the data to the HTTP API after the transform step, or is there a built in feature that supports pushing to an HTTP API?
If you only want to move a very small amount of data, you could use the Web Services Task
…but note that pushing data out of SQL Server is not what this task is intended for…
For more control, you’ll want to look at using the Script Component in a data flow. Much more flexibility/control.