Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.Contents Query option, but since the API syntax requires me to precede each field with a separate "field=" clause, it gives me error:
Expression.Error: The name 'fields' is defined more than once.
Here is my PQ:
= Json.Document(Web.Contents("https://api.address.com/api/v1?code=xxxxxxxxxxxx",
[
Query= [
fields="CallerNumber",
fields="Date",
fields="NumberDialed"
]]))
I cannot use "fields=CallerNumber,Date,NumberDialed" syntax in API, only state "fields=" for each field
I tried
fields="CallerNumber&fields=Date&fields=NumberDialed" (I thought it would pass it as one string), but it didn't work
I do want to use Query option.
Any ideas?
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"}
]]))
HI @paz
Please check if this link help,
Solved: Web.Contents with complex Query parameter names - Microsoft Power BI Community
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
I did. I've checked like 30 google pages before opening this post, indluding the link you've sent.
I am asking for a specific case, which is not addressed there.
Can you help?
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |