Open
Description
After tested, we found Bot Connection API cannot update the parameters
property and it's still the value at first request. Could you take a look? Thanks in advance.
The first request:
PUT https://management.azure.com/subscriptions/xx-xx-xx-xx/resourceGroups/xxx/providers/Microsoft.BotService/botServices/xxxx/connections/xxxxx
{
"kind": "bot",
"location": "global",
"properties": {
"clientId": "xx-xx-xx-xx",
"clientSecret": "xx-xx-xx-xx",
"parameters": [
{
"key": "loginUri",
"value": "https://www.google.com"
}
],
"scopes": "/subscriptions/xx-xx-xx-xx",
"serviceProviderId": "xx-xx-xx-xx"
}
}
The second request:
PATCH https://management.azure.com/subscriptions/xx-xx-xx-xx/resourceGroups/xxxx/providers/Microsoft.BotService/botServices/xxxx/connections/xxxx
{
"kind": "bot",
"location": "global",
"properties": {
"clientId": "xx-xx-xx-xx",
"clientSecret": "xx-xx-xx-xx",
"parameters": [
{
"key": "loginUri",
"value": "https://www.terraform.io"
}
],
"scopes": "/subscriptions/xx-xx-xx-xx/resourceGroups/xxxx",
"serviceProviderDisplayName": "xxxx"
}
}