Making HTTP GET request with Body

Casper Rubæk 246 Reputation points
2021-04-26T13:18:59.927+00:00

I have a requirement to make a HTTP GET request with an included Body content since it is used as search parameters.
However it seems that both Azure Logic Apps and Azure Data Factory can't solve this.

Is there an alternative solution other than doing it manually with a Function App?

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,833 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,513 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Kasper Ulvedal 11 Reputation points
    2021-04-26T21:21:35.037+00:00

    Calling HTTP GET with a request body can be done using either Azure Data Factory or Azure Logic Apps.

    In Data Factory you can setup a copy activity using a Rest API as source. Set the request method to GET and fill in Request body:

    91431-screenshot-2021-04-26-at-231345.png

    Logic Apps allows you to use a HTTP request. Set method to GET and fill in the body.

    91425-screenshot-2021-04-26-at-230600.png

    1 person found this answer helpful.

  2. Rupesh Gupta 1 Reputation point
    2022-05-18T16:17:06.59+00:00

    Mentioned solution for Azure Data Factory doesnt seem to be possible. I tried to used GET method as source in Copy Activity but i cant see request body.

    Please let me know if it is possible to pass x-www-form-urlencoded data to API using GET method with the help of ADF Web Activity??

    0 comments No comments