This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 May 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 |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |