Back
Is it possible to use Azure Data Factory to get data from a REST API and insert it to Azure database table?
Data factory has a special feature called http connector which allows you to do GET or POST(with body) to an http endpoint.
Eg:
{ "name": "HttpLinkedService", "properties": "type": "Http", "typeProperties": "authenticationType": "Anonymous", "url" : "https://en.wikipedia.org/wiki/" }
{
"name": "HttpLinkedService",
"properties":
"type": "Http",
"typeProperties":
"authenticationType": "Anonymous",
"url" : "https://en.wikipedia.org/wiki/"
}
31k questions
32.8k answers
501 comments
693 users