简体   繁体   中英

Azure Logic App Custom Connector Icon

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

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM