So, there's REST API I have, which accepts only POST requests with form data.
I know that JSON requests are like this in Power Query :
let
url = "https://example.com",
body = "{ ""first_param"": ""AAAAA"", ""second_param"": ""BBBBBB""}",
Source = Json.Document(Web.Contents(url,[ Headers = [#"Content-Type"="application/json"], Content = Text.ToBinary(body) ] ))
in
Source
So my question is that Is it possible to send form data?? and How?
Thanks.