This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
I want to use a dynamic URL for my report. I created a URL parameter.
the hardcoded version works fine and looks like this:
=Json.Document(Web.Contents("https://<organization name>.crm4.dynamics.com/api/data/v9.1/opportunities?$select=name"))
I changed it to this:
= Json.Document(
Web.Contents(strURL,
[RelativePath = "opportunities",
Query=
[$select="name"]
]
)
)
Issue is that the syntax does not allow $ in the query parameters but is required to use in the web api for D365 CE.
Without the $ sign the syntax is ok, but then the API is not working properly (see error below)
Any suggestions are welcome
Solved! Go to Solution.
Change:
[$select="name"]
to
[#"$select"="name"]
Thanks Artemus !
it works
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |