Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 42 | |
| 30 | |
| 24 |