Forum Discussion

malagari's avatar
malagari
Continued Contributor
9 years ago
Solved

Possible to update credentials via REST API?

Does the current REST API support updating the data source credentials? I see that I'm able to update the connection string, but what about credentials? The only documentation I'm seeing is for crede...
  • Eric_Zhang's avatar
    Eric_Zhang
    9 years ago

    @v-lvzhan-msft wrote:

    malagari

    I've voted for your idea

     

    Before I acutally did some research and thought I was close as I find this api Set Credentials. The datasource_id and gateway_id can be found via calling Get BoundGatewayDatasources. However when calling the Set Credential API, I've stuck by a  "DMTS_InvalidEncryptionAlgorithmError" error. I'm going to escalate this internally and will post back if there comes any update.

     

    By the way, I don't find any API to create a data source for a dataset in a gateway, even though above two APIs work, We still need such an API otherwise we may have to configure the datasource manually.

     

     

     


    malagariTedPattison

    Here's the update from the Product team. The SET Credential API is for cloud datasources.

     

    Based on my test, I can set credential with the API when the dataset is connecting to a Azure SQL database. 

     

    to get the Datasource and gateway id the user should use this API:

    GET https://api.powerbi.com/v1.0/myorg/datasets/{dataset_id}/Default.GetBoundGatewayDataSources

     

    and then to use the set credentials API.

    PATCH https://api.powerbi.com/v1.0/myorg/gateways/{gateway_id}/datasources/{datasource_id}

     

    I thought the gateway_id in the PATCH API was an real gateway. While I got the declarification that It's not a real GW in this case, but this is what the API refers to.

     

    malagari

    So if you're using SQL Azure database, then I think you can obfuscate the data source credentials from the end-user.