March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi!
I have the following cURL request that works in POSTMAN that I can't figure out how to convert to M for the life of me.
curl --location 'https://thisisaURL.com' \
--header 'ASessionID: ThisisaSessionID' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'searchCriteria={"projectName": "HerecomestheProjectName","startDateTime": "01-Jan-2020 16:35","endDateTime": "01-May-2023 16:35"}'
According to the documentation the API wants the searchCriteria passed as JSON object and I've been fighting with Json.FromValue() and Record.ToBinary() without any luck. Any help would be greatly appreciated!
Solved! Go to Solution.
ChatGPT came to the rescue, this code works:
let
url = "https://thisisaURL.com",
headers = [
#"ASessionID" = "ThisisaSessionID",
#"Content-Type" = "application/x-www-form-urlencoded"
],
body = "searchCriteria={""projectName"":""ThisisaProjectName"",""startDateTime"":""01-Jan-2020 16:35"",""endDateTime"":""01-May-2023 16:35""}",
options = [
Headers = headers,
Content = Text.ToBinary(body),
ManualStatusHandling = {400, 404, 500, 502, 503, 504}
],
response = Web.Contents(url, options)
in
response
ChatGPT came to the rescue, this code works:
let
url = "https://thisisaURL.com",
headers = [
#"ASessionID" = "ThisisaSessionID",
#"Content-Type" = "application/x-www-form-urlencoded"
],
body = "searchCriteria={""projectName"":""ThisisaProjectName"",""startDateTime"":""01-Jan-2020 16:35"",""endDateTime"":""01-May-2023 16:35""}",
options = [
Headers = headers,
Content = Text.ToBinary(body),
ManualStatusHandling = {400, 404, 500, 502, 503, 504}
],
response = Web.Contents(url, options)
in
response
@ExcelAthlete , refer if this can help
https://www.reddit.com/r/PowerBI/comments/12ay6i4/how_to_use_a_curl_request_in_pq/
https://community.powerbi.com/t5/Desktop/Request-curl-API/td-p/1521152
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
86 | |
77 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |