Hi Mukesh Thakor,
Thanks for posting your question in the Microsoft Q&A forum.
You can try the following approaches:
- Review the Integration Account's "Overview" page in the Azure portal. This may show recent activity or linked resources, examine the "Artifacts" section of the Integration Account. If there are schemas, maps, or agreements defined, it suggests the account is being used
- Use Azure Resource Graph Explorer to query for Logic Apps linked to the Integration Account:
Resources
| where type == "microsoft.logic/workflows" | where properties.integrationAccount.id contains "<integration-account-resource-id>"
- Run an Azure CLI command to list linked Logic Apps:
```bash
az logic workflow list --query "[?properties.integrationAccount.id=='<integration-account-resource-id>']"
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful