Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I'm trying to create a new datasource and bind it to a gateway,
when submit the request via C # sdk
the result is:
$ exception {"Operation returned an invalid status code 'BadRequest'"}
exploring the request the body is:
{r "dataSourceType": "Sql", "connectionDetails": "{server" command ":" \ t "," database "": - "<MY_DB>>", "credential Details": {credentials: {\ _ "credentialData \ _": [{v - name "name": \ _ username "username", \ t \ _\ "}, {\ _ \ _" name \ _\ ": \ _ password \ _ password", \ _ "value \ _" \ t }, "credential type": "Basic", "encrypted connection": "Encrypted", "encryption algorithm": - RSA - OAEP, "privacyLevel": "None", n "data SourceName": "datasource - from code" n}
which is not really a perfect json.
Later I tried REST API on the page:
https://docs.microsoft.com/en-us/rest/api/power-bi/gateways/createdatasource
the request body is:
{ "DataSourceType": "SQL", "connectionDetails": "{\" server \ ": \" <MY_DB_SERVER> \ ", \" database \ ": \" <my_db> \ "}", "credentialDetails": { "credentialType": "Basic", "credentials": "{\" credentialData \ ": [{\" name \ ": \" username \ ", \" value \ ": \" <MY_USERNAME> \ "}, { \ "name \": \ "password \", \ "value \": \ "<MY_PSW> \"}]} "," encryptedConnection "," Encrypted "," encryptionAlgorithm ":" RSA-OAEP, "" privacyLevel ":" None ",}," DataSourceName ":" datasource-from-rest "}
and the result was:
Response Code: 400
requestid: 6b3ea5a3-eefa-4dc4-b979-5561c890f578
{
"error": {
"code": "DM_GWPipeline_UnknownError",
"pbi.error": {
"code": "DM_GWPipeline_UnknownError",
"parameters": {},
"details": [
{
"code": "DM_ErrorDetailNameCode_UnderlyingErrorMessage",
"detail": {
"type": 1,
"value": "The input is not a valid Base 64 string since it contains a non-Base 64 character, more than two fill characters or an incorrect character between the fill characters."
}
},
{
"code": "DM_ErrorDetailNameCode_UnderlyingHResult",
"detail": {
"type": 1,
"value": "-2146233033"
}
}
]
}
}
}
I would like to be able to add programmatimaente datasources to a gateway but there seems to be some problem, can anyone help me?
thanks for your attention
Solved! Go to Solution.
Public Key and an example can be found in:
After much research it seems that the problem is the need to crypt the credentials. Unfortunately this thing is not mentioned in the main API guide but only in the paragraph:
https://docs.microsoft.com/en-us/power-bi/developer/encrypt-credentials
Now my problem is how to find (or calculate) the values: "publicKeyExponent" and "publicKeyModulus" which should be related to the public gatewey key.
Confident in someone's help, thanks for your attention.
Public Key and an example can be found in:
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
8 | |
7 | |
2 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |