Questions tagged [azure-logic-apps]

Azure Logic Apps is a cloud service that helps you build automated business process and enterprise integration workflows through a visual designer. For more control, you can change the runtime by using the Logic Apps Workflow Definition Language. Logic Apps easily consume API apps such as Outlook 365, DropBox, and more. You can call logic apps with schedule-based triggers, webhook triggers, or programmatically.

Azure Logic Apps is a cloud service that helps you build automated business process and enterprise integration workflows by using a visual designer. For more control, you can create or extend existing workflows with the Logic Apps Workflow Definition Language. Logic apps easily consume API apps such as Outlook 365, DropBox, SendGrid, and more. You can call logic apps with schedule-based triggers, webhook triggers, or programmatically.

For more information, see the Azure Logic Apps page at https://azure.microsoft.com/services/logic-apps, or the documentation at https://learn.microsoft.com/azure/logic-apps/. Learn more about the Workflow Definition Language at https://learn.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language.

3898 questions
4
votes
1 answer

Azure Service Bus: Renew message lock token in Logic App

I'm working on an Azure Logic App which a Service Bus peek-lock trigger. The Service Bus has a message lock duration of 5 minutes. When an instance is running for more than 5 minutes, the message lock will be released and I cannot complete the…
Cuong Dang
  • 41
  • 3
4
votes
3 answers

Can't create a file share in a storage account while deploying Logic App from the Portal

I am getting the below error while creating a Logic App from the portal. "Creation of storage file share failed with: 'The remote server returned an error: (403) Forbidden.'. Please check if the storage account is accessible." While selecting the…
ccoutinho
  • 3,308
  • 5
  • 39
  • 47
4
votes
1 answer

Azure Data Factory vs Azure Logic Apps

Trying to self teach some ETL skills and need some help with the best way to do certain tasks. I am trying to bring in data from our customer service platform - Freshdesk - into our SQL data warehouse. We are a microsoft house and I have done…
4
votes
1 answer

Unable to connect the API connection to the logic App via ARM template in terraform

In my terraform I have created a logic app and its workflow with the help of a ARM Template. The 2 connections used in the logic app is also created via ARM template. But somehow even though the resources get created in AZURE. But when I got to the…
4
votes
1 answer

Azure Logic App condition to check empty array

I am working on a Azure Logic App that returns an empty array after using Filter function. In the next step, I would like to use a condition that can check if the previous array is empty or not. If the output is empty, Then it will return true and…
user9513505
  • 45
  • 1
  • 7
4
votes
3 answers

Run Recurrence trigger in Azure Logic App on the Last day of Every Month

I have an Azure Logic App which needs to run every month. I'm using a Recurrence Trigger to trigger my logic app. I want to run my Logic App only on the last day of every month. Eg. --> Jan 31st 2020, Feb 29th 2020, March 31st 2020, so on & so forth…
SD4
  • 439
  • 10
  • 27
4
votes
2 answers

How to disable SAS authorization for Logic App?

Is there a way to disable the SAS authorization scheme for a Logic App HTTP-trigger? In the documentation I read the following: "Inbound calls to a request endpoint can use only one authorization scheme, either SAS or Azure Active Directory Open…
cb0008
  • 93
  • 1
  • 8
4
votes
1 answer

How to include an external logic app implementation in ARM template

Separation infra and workflow I have deployed multiple logic apps in azure using ARM templates. This means that the entire workflow of these apps has been defined in the deployment templates, which clutters up these files. I'd like to keep the…
Casper Dijkstra
  • 1,615
  • 10
  • 37
4
votes
2 answers

Why is DotLiquid or Azure Logic Apps automatically converting my date field?

I have a liquid template that includes a date field, which I am not using any filters on at all, but it's getting converted from 2020-04-11T22:02:11Z UTC to 4/11/2020 10:02:11 PM. Is this expected behavior of DotLiquid or Azure Logic Apps? How can I…
Joe Eng
  • 1,072
  • 2
  • 15
  • 30
4
votes
2 answers

Get a value from Azure Table Storage with Logic App

I am new to Logic Apps so bear with me. I am just trying to perform a simple lookup in an Azure Table Storage and get a value that I can store in a variable in a Logic App. Here is what my Table Storage looks like: My RowKey is unique and will be…
Oliver Nilsen
  • 1,017
  • 2
  • 12
  • 32
4
votes
4 answers

How to connect Azure storage account to Logic apps without enabling public access on storage account?

Does anybody know how to connect to Azure blob storage using Logic App connectors and triggers? I don't want to grant public access on my storage account. It works fine if I allow public access but when I restrict the access to only selected IP's,…
4
votes
3 answers

Getting "Failed to Fetch" in result view of Azure Logic App

We have Logic Apps running into Azure. We are adding firewalls to some of our resources, and as such, I am migrating our Logic Apps to run inside an Integration Service Environment (ISE). I am finding that when I go into the results of a run for…
John
  • 239
  • 4
  • 12
4
votes
1 answer

Join two arrays in Logic Apps

I have two variables as Arrays in Logic app Ex; Variable A=["A","B"] Variable B=["C","D"] I want to combine both and return Variable 9=["A","B","C","D"]
4
votes
2 answers

Unable to see Azure Functions from Logic Apps

I have created several Azure Functions, with custom routes, which from what I understand from the docs https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-azure-functions#prerequisites, they will not appear in the list of Azure Functions…
mattruma
  • 16,589
  • 32
  • 107
  • 171
4
votes
3 answers

In Logic Apps JSON Array while parsing throwing error for single object but for multiple objects it is working fine

While parsing JSON in Azure Logic App in my array I can get single or multiple values/objects (Box as shown in below example) Both type of inputs are correct but when only single object is coming then it is throwing an error "Invalid type. Expected…
Varun05
  • 389
  • 3
  • 13