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
0
votes
1 answer

How to call a python script from a logic app to parse and write data to an azure sql database

I am writing a logic app that retrieves data from a sharepoint folder using a recurrence trigger. Given the nature of the data, I only need a portion of it, and have written a python script to parse it. Additionally, this script then connects to an…
0
votes
0 answers

Moving messages from DLQ to main subscription is omitting the body of message

We are in process of handling messages in DLQ for one of the subscription in our Servicebus and as we were not able to move them in main subscription using Logic App/ Azure Function, we tried to move messages from DLQ to main subscription using…
0
votes
1 answer

Logic app working with Main Subscription but not with DLQ of Service Bus

We are trying to consume messages from DLQ of Service Bus using logic App with below settings. But with these settings we are getting below error To confirm if we are able to process messages from main subscription or not, selected the…
0
votes
1 answer

adding a sql api connection using systemassignedmanaged identity from ARM template for azure logic app

I am trying to create an api connection for my logic app to an azure database using the system assigned managed identity from an ARM template. I found that for managed identity you had to add the parameterValueType: alternative (suggestion for event…
0
votes
1 answer

Logic app getting 403 error while getting messages from DLQ of Service Bus in case of Particular Subscription

We have written logic app workflow to process message from DLQ of Service Bus Subscription. Its behavior is strange, as for one Subscription it is working fine but for other subscription in same topic it is giving below error Below is the snapshot…
0
votes
1 answer

Logic Apps Outlook Get Events - Issue With Recurring Events

I have a Logic App that I need to get events from a Calendar in Outlook. I am specify the dates I am interested in like this. Start/DateTime ge '2023-07-01' and End/DateTime le '2023-07-31' Problem is that recurring events that where started outside…
Jon Farmer
  • 326
  • 1
  • 6
  • 16
0
votes
1 answer

Why does logic apps retrieve Content-Type must be application/x-www-form-urlencoded if it is passed?

I'm developing a Logic app that should call a specific API one time for a day to retrieve the response (a token) and on the next steps (not already written) it will contact another API and finally it will store the result on a Google…
Filippo1980
  • 2,745
  • 5
  • 30
  • 44
0
votes
1 answer

Azure Logic App - HTTP Post API responds without body

Does anyone knows why when I use azure logic app in conjunction with an http API call I get the answer without a body only with the OUTPUTS option. Download (Alt/Option + click).. from Logic App : (no data) from postman (work!) I am trying to work…
0
votes
1 answer

Create multiple Azure Logic app actions depending on each other in a loop in Terraform

I have 10+ actions in my Azure Logic app. I keep the action definitions in a JSON file as the content is pretty long, 1K+ lines. Most actions depend on each other. So, I need to create the actions in a specific order so that Terraform won't fail. I…
cahitihac
  • 1
  • 3
0
votes
1 answer

Combine array items in Azure Logic App Consumption

I have an output of http action which contains an array of objects and looks like…
Mateech
  • 1,010
  • 1
  • 11
  • 26
0
votes
2 answers

Logic Appp trigger for Azure Blob Storeage is not working

Good afternoon everyone, I'm trying to create a simple Logic App, but for some reason that I can't understand, I am unable to save it. The Logic App is straightforward, it should only post a message on Slack when an Azure Blob Storage trigger is…
MadDev
  • 113
  • 16
0
votes
2 answers

How to add a New Line in Azure Logic app, concat method?

I'm trying to add a new line in a concat in azure logic apps. but it only adds the new line as a string instead. My goal is to add an array of object I get into a word doc. but it doesnt add a new line but actually adds the characters. This is how…
0
votes
1 answer

Logic app - Retrieve email content as-is format from storage blob URL

I am using the Azure logic app. I am scraping email content as it is (with images/text) and storing it in azure blob storage but when I hit the blob url it's showing me pure HTML. I have modified the content type of a "created blob" action but no…
Chand Jogani
  • 146
  • 12
0
votes
1 answer

Logic App Extracting String and Group them to Body Email

Hello here is the snippet of my code and I am trying to get the AppId from this represented in the following manner in oder to send it via mail. { "appId": "com.google.ios.youtube" }, …
SmartGuy
  • 5
  • 2
0
votes
1 answer

Unable to connect to Sharepoint via Logicapps

When trying to access a client's data from a link they gave from SharePoint logicapps says: Error code: 'Unauthorized', Message: 'Unable to access the Folder in the dataset On the same user from where I'm trying to access the data, I have access…