Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I'm having a very hard time finding any examples for my use case which I find surprising. I have an endpoint like "www.myCompany/login" that takes a username, password, and user type as a json array and returns a token. That token is used in subsequent requests to other endpoints to retrieve data from the API. Are there any examples for this use case out there?
Thanks,
Conor
Hopefully this pattern can help get you started. You would need to finish to extract the info you need and maybe add headers / body and probably some edits depending how your data is returned
let
token_header = [
#"Content-Type" = "application/json",
#"Accept" = "*/*"
],
token_content = [
#"grant_type" = "client_credentials",
#"client_id" = #"clientid",
#"client_secret" = #"secret"
],
AccessTokenCall = (Web.Contents("https://XXX.com/v1/oauth2/token", [Headers = token_header, Content = Json.FromValue(token_content)])),
AccessToken= Json.Document(Source, 1252),
Headers=[
#"Authorization" = "Bearer " & AccessToken ,
#"Content-Type" = "application/json"
],
APICall = Web.Contents("https://XXX.com/v1/oauth2/token", [Headers = Headers])
Did I answer your question? Mark my post as a solution! Proud to be a Super User!
Connect with me!
Stay up to date on
Read my blogs on
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.