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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.