Questions tagged [azure-logic-app-standard]

165 questions
1
vote
1 answer

Deploy Logic App (Std) Workflow Disabled with Bicep/YAML

I have tried numerous methods and the workflow is still deployed enabled. My latest attempt was to use the resource in my bicep: resource workflow 'Microsoft.Web/sites/workflows@2015-08-01' = { name: workflowName dependsOn: [ logicContainer ] …
1
vote
0 answers

Despite creating Workflows, Logic App Workflow listing is empty

I created a Workflow in Logic App, but the workflow listing in my Logic App keeps showing empty most of the times (though some times it does show my created workflows). I've tried force-refreshing the page multiple times. Didn't work. When I tried…
markvgti
  • 4,321
  • 7
  • 40
  • 62
1
vote
3 answers

Azure logic app table insertions causing errors

We recently started working on Azure logic app (Standard) and ran into some problems when inserting some data to a normal Azure Table Storage. Service: Azure logic app (Standard) Function that are failing: Insert or Update Entity (Table…
1
vote
1 answer

How to use Azure DevOps to deploy Azure Logic App (Standard)

I can now use the ARM template task to successfully deploy the Azure logic app (Consumption). In the Consumption mode, I can export the complete arm template (including the set variables and the set workflow) in the Azure logic app. But when I try…
1
vote
1 answer

Facing issue While launching Logic App From VS Code

I am facing below error while trying to launch logic app from VS code locally . I created logic app after installing extensions like - Azure tools Functions app tools extension v3.x Logic App (Standard) extension Azurite ngFork for webhook Below…
adidas
  • 11
  • 3
1
vote
1 answer

Logic App Standard (single tenant) - How to create additional/new workflow in existing logic app using REST API

I have and existing Logic App Standard with a few workflows. The goal is to create additional workflows using REST API.
1
vote
1 answer

Why is http + swagger trigger missing?

I am working in Logic App Standard. Built-in connectors include support triggering via swagger doc as described here. When I open the portal and select swagger, nothing shows up. When I enter http, no options for HTTP + Swagger are offered. I do…
user2503078
  • 737
  • 1
  • 8
  • 24
1
vote
1 answer

Is there a management API for Standard Logic Apps?

There is a Logic Apps management API (https://learn.microsoft.com/en-us/rest/api/logic/workflows) As far as I understood you cannot use the service to access Standard Logic Apps. Is there a work around? Basically I need to retrieve a few days of…
1
vote
1 answer

Can Azure Logic Apps Standard be hosted in an App Service Plan like Azure Function?

Background: I don't have an App Service Environment and I don't want to pay for that. I have an App Service Plan that I have a few App Service and Functions running in it. I am trying to clarify if Logic Apps can be hosted on an existing App Service…
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
1
vote
1 answer

Api connections(keyvault, servicebus and blob ) using managed identity through bicep

Hi I am trying to create API connections for Key Vault, service bus and storage account using bicep. unfortunately do not see clear documentation from Microsoft side. created API connections(Azure Key Vault, Service Bus and storage account) using…
1
vote
2 answers

How to get blob URL using Logic App Standard

How to get the blob URL from Azure Blob Storage? The trigger is when a blob is added or modified. The blob content could be read and I was very happy as I could insert the content into an Azure Table property, so using PK and RK the file content…
1
vote
1 answer

How to implement this kind of condition in Azure Logic App?

I have the following json output structure in Azure Logic App using the Parse JSON activity: [ { "name": "John", "working days":['monday', 'tuesday', 'friday'], "starting hour": ['8 A.M'., '7 A.M', '8 A.M.'] }, { "name": "Carl", "working…
1
vote
1 answer

Logic App Standard Automate Reference to workflow accross environments

I have automated the deployment of a logic app standard via Azure Devops Pipeline using an arm template. I have another pipeline that uses the Azure Devops zip deployment task to deploy the workflows (as recommended by Microsoft documentation). My…
1
vote
0 answers

How To Pass Multiple Files in Binary Format in Form Data in Azure Logic App HTTP

i am trying to pass two files in multipart form in the Azure Logic App in binary format. But the upload request gets reject. When i pass the same request in postman, the request is successful. PFB the details. Postman Request: Header: Postman Curl…
Ashutosh
  • 111
  • 14
1
vote
1 answer

How can I configure an alert for when a logic app workflow (standard) fails

I am trying to configure an alert for when a workflow in Logic app Standard fails.However, I cannot find any out-of-the-box Metric/Signal similar to "RunsFailed" that is available for Logic App Consumption. Another way is to raise alerts based on…
AasthaK
  • 116
  • 8
1
2
3
10 11