Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
user180618
Helper I
Helper I

Pulling specific parameters other than action=list from an API

I am using Qualys's API documentation to pull their endpoints into Power Query. Doing the below works fine:

 

let
Url = "https://qualysapi.qualys.eu/api/2.0/fo/knowledge_base/vuln/",
AuthString = "Basic ###############################",
Source = Xml.Tables(
Web.Contents (
Url,
[
Headers = [ #"Authorization" = AuthString,
#"X-Requested-With" = "Power BI"],
Query = [action = "list"],
Content = Text.ToBinary("")
]

)
)

 

However, I'm not sure how to modify the 'Query' line to pull multiple parameters from the API, for example so that I can use both action=list and also something like echo_request.

 

Appreciate any suggestions.

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Query = [action = "list", echo_request = "1"],

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

Query = [action = "list", echo_request = "1"],

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors