Is there any way that I could update the default icon of the custom connector logic app in Azure? custom connector
1
votes
2 Answers
2
votes
0
votes
Yes you can pretty much use an icon as per you need. All you need to do is add the iconUri
param to the properties of your connector from code view.
Example :
"properties": {
"description": My Custom Connector",
"displayName": "[variables('my_connectorName')]",
"iconUri": "[concat('https://', parameters('storageAccountName'),'.blob.core.windows.net/icon/logo-icon.png')]",
}