How can I consume this Rest API in Azure Data Factory
问题 I have a REST API I need to call from Azure Data Factory and insert the data into a SQL table. The format of the JSON returned from the API is in the following format: { "serviceResponse": { "supportOffice": "EUKO", "totalPages": 5, "pageNo": 1, "recordsPerPage": 1000, "projects": [ { "projectID":1 ...} , { "projectID":2 ...} ,... ] } } the URL is in the format http://server.com/api/Projects?pageNo=1 I have managed to set up a RestService to call the API and return the JSON and a SQL Sink