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

Join 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.

Reply
mattia_b
Frequent Visitor

Gateways - Create Datasource Rest and SDK problems

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

1 ACCEPTED SOLUTION
2 REPLIES 2
mattia_b
Frequent Visitor

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.

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.