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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
powerbi_jenhen
Resolver II
Resolver II

Power BI Rest API via Powershell

Hi,

 

I have the below $Body variable to use within my API Invoke command, how can I exit the single quotes to reference my $server and $database variables? I currently receive the error: "DMTS_UnsupportedConnectionStringError". I've tried to add single quotes to exit but this triggers an unexpected token:

 

$Body = @{
        "datasourceType"="SQL"
        "connectionDetails"='{"server":$server,"database":$database}'
        "datasourceName"=$gatewaySourceName
    }
1 ACCEPTED SOLUTION
powerbi_jenhen
Resolver II
Resolver II

The issue was my server variable required "\\" not "\". Code that worked for me:

$Body = ConvertTo-Json -Depth 4 -InputObject $(@{
        dataSourceType = "Sql"
        connectionDetails = '{"server":"'+$server.Replace("\","\\")+'","database":"'+$database+'"}'
        datasourceName = $sourceName
        credentialDetails = @{
            credentialType = $credentialDetails.credentialType
            credentials = $credentialDetails.credentials
            encryptedConnection = $credentialDetails.encryptedConnection
            encryptionAlgorithm = $credentialDetails.encryptionAlgorithm
            privacyLevel = $credentialDetails.privacyLevel
        }
    })

View solution in original post

3 REPLIES 3
powerbi_jenhen
Resolver II
Resolver II

The issue was my server variable required "\\" not "\". Code that worked for me:

$Body = ConvertTo-Json -Depth 4 -InputObject $(@{
        dataSourceType = "Sql"
        connectionDetails = '{"server":"'+$server.Replace("\","\\")+'","database":"'+$database+'"}'
        datasourceName = $sourceName
        credentialDetails = @{
            credentialType = $credentialDetails.credentialType
            credentials = $credentialDetails.credentials
            encryptedConnection = $credentialDetails.encryptedConnection
            encryptionAlgorithm = $credentialDetails.encryptionAlgorithm
            privacyLevel = $credentialDetails.privacyLevel
        }
    })
lbendlin
Super User
Super User

 

 

 

$Body = @"
{
        "datasourceType":"SQL",
        "connectionDetails":'{"server":$server,"database":$database}',
        "datasourceName":$gatewaySourceName
}
"@@

 

 

note that the last line should be "@ .  Can't get rid of the second @

Thanks! I actually have further details in my $Body so would the below be the correct syntax? I'm getting a "BadRequest" on my Invoke:

 

$Body = @"
    {
        "datasourceType":"SQL",
        "connectionDetails":'{"server":$server,"database":$database}',
        "datasourceName":$sourceName,
        "credentialDetails":{
            "credentialType":$credentialDetails.credentialType,
            "credentials":$credentialDetails.credentials,
            "encryptedConnection":$credentialDetails.encryptedConnection,
            "encryptionAlgorithm":$credentialDetails.encryptionAlgorithm,
            "privacyLevel":$credentialDetails.privacyLevel
        }
    }
"@

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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