Forum Discussion
paz
3 years agoRegular Visitor
Web.Contents Query parameter - multiple parameters with same name
I am trying to run the following API call: https://api.address.com/api/v1?code=xxxxxxxxxxxx&fields=CallerNumber&fields=Date&fields=NumberDialed It runs fine in browser / postman I want to use Web....
evanK03
3 years agoRegular Visitor
Please try using following syntax it worked for me:
fields={"FieldName1","FieldName2","FieldName3",...}
In your case it would be:
= Json.Document(Web.Contents("https://api.address.com/api/v1?code=xxxxxxxxxxxx",
[
Query= [
fields={"CallerNumber","Date","NumberDialed"}
]]))