1
votes

Is there any way that I could update the default icon of the custom connector logic app in Azure? custom connector

2
Are you the author of the said custom connector you're trying to change the icon for?Derek Li

2 Answers

2
votes

Yes.

In section 1. General of the Custom Connector configuration, there is the option to upload an icon.

This option is always available so you can update the image any time.

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')]",
              }