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

Formatting logic app expression for DateTime

I am generating a file for export with the file name utcnow in the logic app expression which returns a value like this utcNow()- "2020-06-01T15:41:15.5103915Z" I want to convert it like "20200601154151" that means I need to remove some…
6
votes
1 answer

How to deploy Logic App with o365 Connector within ARM template

Im trying to deploy an ARM template with a logic app and an (unauthenticated) o365 connection. This is my template: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", …
jannikb
  • 476
  • 1
  • 6
  • 16
6
votes
1 answer

How to use use Regular Expression (RegEx) within Azure logic app

I want to verify a value in my azure logic app which follows a pattern which can be identified by Regular Expressions. My Value is KUL-M-X-Y, here KUL is fixed value but value of M can be "KG", "TON" etc., also Value of X and Y can be numeric. I…
Suraj Sahoo
  • 153
  • 1
  • 1
  • 10
6
votes
3 answers

Get URL to an Azure Alert Detail Page

I am using a logic app to create a webhook (used in a log search alert), which then pushes the alert payload to slack. I am trying to send along with the alert payload data (to slack) a url to the actual alert detail page and not use the built in…
newbie_86
  • 4,520
  • 17
  • 58
  • 89
6
votes
2 answers

Logic app read property of json stored in variable

I have this json in a Logic App variable. I want to 'id' property of this JSON and use further. How to get this id property value? My json is: { "id": 1, "name": "John bright", "username": "Lily", "email": "abc@aabc.com", }
dotnetavalanche
  • 804
  • 2
  • 12
  • 25
6
votes
1 answer

Retrieve Azure LogicApp's Connector metadata using C# SDK

Can I retrieve metadata of Connector of a Logic App using C# SDK ? Am getting logic app using: Microsoft.Azure.Management.Logic.LogicManagementClient.Workflows.Get(resourceGroupName, logicAppName), but this just gives details of App and does not…
Vidhya Sagar Reddy
  • 1,521
  • 1
  • 13
  • 25
6
votes
1 answer

Is it possible for an Azure Application Insights Alert to trigger another function?

I would like to use Application Insights to monitor a Logic App that chains several Azure Functions. I want the chain to be as safe as possible, and i if something goes wrong i want to have the http request that failed to be processed correctly by…
6
votes
1 answer

How to use "@odata.id" in JSON body when using the HTTP action in Azure Logic Apps?

I'm using Azure Logic Apps to call out to the Microsoft Graph API using the HTTP - HTTP action. For this API I need to execute a POST request with the following body: { "@odata.id": "" } When I try to save the Logic App, this error…
6
votes
4 answers

In Azure logic app i am getting DirectApiAuthorizationRequired

In azure logic app, I am getting the following error { "error": { "code": "DirectApiAuthorizationRequired", "message": "The request must be authenticated only by Shared Access scheme." } } but as for as I know SAS token for…
user9596637
6
votes
2 answers

Azure Logic Apps 'Execute SQL Query' Connector

I am trying to implement several Azure Logic Apps that query/update an Azure SQL Server Database. The queries return either one value or a table with several rows. I prefer not to create stored procedures, but instead use the 'Execute SQL Query'…
David Ruiz
  • 383
  • 1
  • 4
  • 10
6
votes
4 answers

How to throw an exception in Azure Logic Apps?

Is it possible to throw an exception in a Logic App? Specifically, I'm trying to throw an exception inside of a scope. Then in the run after of the scope I'd check if it failed and inspect it for errors. I tried using a terminate inside of a scope,…
Joe Eng
  • 1,072
  • 2
  • 15
  • 30
6
votes
1 answer

Dynamically calling several back-end endpoints from within Azure APIM policy

I'm calling a back-end API from Azure API Management (APIM) and I need to provide the JSON schema for my custom connector in Logic Apps/Flow. Depending on the content of the response I'm getting, I need to perform additional calls in order to…
6
votes
3 answers

Azure Logic Apps not able to establish a connection

I'm following the next tutorial: https://learn.microsoft.com/en-us/azure/azure-functions/functions-twitter-email. I had some problems with connecting to Twitter in Chrome, switched to Edge and was able to make the connection. However for the…
Kris van der Mast
  • 16,343
  • 8
  • 39
  • 61
6
votes
5 answers

Parse text in Azure Logic Apps

I want to create Azure Logic App which will constantly request a specific website on the Internet and parse received HTML. I've created Logic App and set up interval and HTTP request action. Which action should I choose as the next step for simple…
6
votes
2 answers

Hosting and running azure logic apps locally

Is there any way for setting up a local environment for hosting and running azure logic apps locally? Thanks in advance.
Shadi
  • 191
  • 3
  • 13