Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (17.6k points)

Is it possible to use Azure Data Factory to get data from a REST API and insert it to Azure database table?

1 Answer

0 votes
by (47.2k points)

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/"

        

    

}

Related questions

Browse Categories

...