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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
dslForPBI
Helper I
Helper I

API call with embedded password

Is there an M language function or other facility to encrpt a password?  I have an api call written in Power query to extract data from an API and I am wondering if there is capabilty to encrpt/decrpt from within a power query?

3 REPLIES 3
Anonymous
Not applicable

@dslForPBI,

 

What encryption/decryption functions would you like to get? Could you please post an example? In Power BI Desktop, when you connect to any data sources, Power BI will encrypt the password in PBIX file.

Regards,
Lydia

Hello v-yuezhe-msft--thanks for your reply!  Here is an example to demostrate what I am looking for.  In the snippet below, I am making an API call, so my data source is an endpoint which returns JSON.  I am making a POST using username and password embedded in "Web.Content" like so...

 

authCode = Text.Combine({"basic ",authCodeBinAsTxt}),
//
//Provide admin user name and password
//
ForJsonGen = Json.FromValue([grant_type="password",username="xxxxx",password="xxxxx",scope="RealTimeApi"]),
GetJson = Json.Document(Web.Contents(url,
[
Headers=[#"Accept"="application/json",#"Content-Type"="application/json",#"Authorization"= authCode],
Content = ForJsonGen
])),
FormatAsJson = Json.Document(Text.ToBinary(GetJson)),

 

I'd like to maybe parameterize it and use encryption if that is possible, make sense?

 

Thanks and Regards

Anonymous
Not applicable

@dslForPBI,

It is possible to parameter data source in Power BI Desktop, please take a look at the following similar thread and blog. But there is no built-in encryption function in Power BI, I would recommend you zip PBIX file and then set password/encryption.

https://community.powerbi.com/t5/Integrations-with-Files-and/Parameters-for-JSON-API-data-Maintain-Q...
https://powerbi.microsoft.com/en-us/blog/deep-dive-into-query-parameters-and-power-bi-templates/

Regards,
Lydia

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors