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'm trying to generate an API query which takes multiple webids as input from table values.
If I directly type the query as below I get the response:
The Query works as below, passing each webid seperately.
However, If I pass the webids from a table value (Custom Invoke using Json.Document(Web.Content("https:/apiserver.com/piwebapi/streamsets/value",[Query=[webid={ Column1}]])), the URL is getting passed with only webid as whole
How to make this work so that all the value from the Coloumn can be passed in the query and it considers as seperate WebIds.
Solved! Go to Solution.
Hi @prabhat_m ,
Please update the code as below and check if it can work or not...
Json.Document(
Web.Content(
"https:/apiserver.com/piwebapi/streamsets/value",
[Query = [webid = Text.Split([Column1], ",")]]
)
)
Any comment or problem, please feel free to let me know.
Best Regards
Thank Amit.
I'm using the same to form tables where cow from the example is webid.
I am trying to pass multiple query parameter for ex: Query=[q="cow","goat","dog"] which workis in the API that I'm using if I harcode it. It makes propoer query as api?q=cow&q=goat&q=dog and goes through.
However if I pass "Cow","goat","dog" from a coloum in a table, it is not working and the query becomes api?q="cow","goat","dog" which is incorrect format
Hi @prabhat_m ,
Please update the code as below and check if it can work or not...
Json.Document(
Web.Content(
"https:/apiserver.com/piwebapi/streamsets/value",
[Query = [webid = Text.Split([Column1], ",")]]
)
)
Any comment or problem, please feel free to let me know.
Best Regards
Worked like a charm!!
Thank you!
Check out the April 2026 Power BI update to learn about new features.
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 |
|---|---|
| 36 | |
| 32 | |
| 31 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 57 | |
| 31 | |
| 29 | |
| 22 |