Making an API's call

Kman 41 Reputation points
2021-05-07T12:50:19.773+00:00

Hi All,

I wanted to make API calls maybe twice a day or even if I wanted to make it every few minutes and put the API data (JSON) into ADLS and then into Azure SQL.

What is the best Azure Services I can use for both scenarios which is scalable? How would the Azure SQL deal with heavily nested JSON data?

Thank You.

Azure API Management
Azure API Management
An Azure service that provides a hybrid, multi-cloud management platform for APIs.
2,098 questions
Azure SQL Database
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. JayaC-MSFT 5,531 Reputation points
    2021-05-09T14:12:21.47+00:00

    Hello @Kman , you may consider Timer trigger in this case. You can use Httpclient to make an API call to the endpoints mentioned in the document. You may need to pass an authorization token for validation , for that please refer to this

    You may also check logic app recurrence trigger : https://learn.microsoft.com/en-us/azure/logic-apps/tutorial-build-schedule-recurring-logic-app-workflow
    or, scheduler : https://learn.microsoft.com/en-us/azure/logic-apps/concepts-schedule-automated-recurring-tasks-workflows
    https://learn.microsoft.com/en-us/azure/connectors/connectors-native-recurrence

    and, for the ADLS and Sql server :
    https://learn.microsoft.com/en-us/connectors/azuredatalake/
    https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-sqlazure


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.