Hello.
I am trying to update an Azure Table Storage Key and used the message body below for a Patch data source API request.
{
"credentialType": "Key",
"credentials":
{ "credentialData": [
{"name": "key",
"value": "<Azure table storage key>"
}]
},
"encryptedConnection": "NotEncrypted",
"privacyLevel": "Private",
"encryptionAlgorithm":"None"
}
And I get a bad request response:
{
"error": {
"code": "BadRequest",
"message": "Bad Request",
"details": [
{
"message": "The property 'credentials' does not exist on type 'Microsoft.PowerBI.ServiceContracts.Api.GatewayDatasource'. Make sure to only use property names that are defined by the type.",
"target": "datasourceDelta"
}
]
}
}