首页 > 解决方案 > Logic App identifier unique across multiple instances

问题描述

I have an Azure function that is being triggered from Logic Apps. I need to add a unique id in my Azure function. Currently, I am using the identifier which is created by Logic Apps. I wanted to check if this "identifier" in Logic Apps is unique across multiple Logic Apps instances. Thank you for your help.enter image description here

标签: azureazure-functionsazure-logic-apps

解决方案


You can get the Identifier of the logic app of instance using the below the expression during the execution :

workflow()['run']['name']

This (Identifier) is unique for each and every run instance.


推荐阅读