Greg
Greg

Reputation: 434

Azure data Factory - write result of pipeline to REST API?

While I've seen examples of getting data from HTTP, I haven't really seen once for outputting to a REST API.

What's the best way to do this?

Thanks, -Greg

Upvotes: 0

Views: 239

Answers (1)

Paul Andrew
Paul Andrew

Reputation: 3253

I would suggest using the web activity in ADFv2. It offers GET, POST and PUT methods.

In ADFv1 you'd need to write a custom activity to interact with the API.

Hope this helps.

Upvotes: 2

Related Questions