Questions tagged [azure-logic-app-standard]
165 questions
1
vote
1 answer
Terraform : removal of identity block does not remove identity assigned from resource azure logic app
I have this in my main.tf and
dynamic "identity" {
for_each = var.identity == [] ? [] : [1]
content {
type = lookup(var.identity, "type", null)
#identity_ids = lookup(var.identity, "identity_ids", null)
}
}
I have…

Suraj
- 135
- 2
- 8
1
vote
2 answers
Is there a way to get an azure portal url to a specific workflow in a standard logic app?
I don't think this is possible,
but i would like to know if there is any url that can re-direct me to a specific workflow in a standard logic app (single-tenant).
Why do i ask this, because in the consumption logic apps, if i provided someone with…

Nmaster88
- 1,405
- 2
- 23
- 65
1
vote
2 answers
Azure generate URL for a standard Logic app with connection to CosmosDB
I have a workflow in a standard logic app, that have HTTP trigger. When the workflow is trigged, the workflow, retrieve some data from a CosmosDB. Something like:
The previous method will require to have an API connection. I have already created…

ibda
- 376
- 3
- 15
1
vote
1 answer
How do I filter Azure Storage Table using OData Filter on unique Lastname in LogicApps?
I would like to filter on unique / distinct Lastname while using the Get Entities from the Azure Storage Table. Distinct is currently not supported and groupby also doesn't seem to fit. How can I filter on unique Lastname using the OData Filter?

Val
- 103
- 2
- 7
0
votes
1 answer
Why my logic app if condition not working as expected
Hello I try to schedule a logic app to work only between 15-31 every month and I created an array
1.
Then I initialize 2 variables (one in which I will store the current day and one that will help me to iterate trough the list at 1.
2.
Then I create…

Vonavi
- 3
- 1
0
votes
1 answer
Getting JSON nested object from Array of JSON in Azure logic app and Pass it in Select Action Map field
Trying to parse json object using Logic App and Select(Data Operation) Action - and passing dynamic json of sharepoint list columns inside [MAP] field to get those particular columns from sharepoint list and performing for each sharepoint list.
MAP…

G KAMESWAR RAO
- 41
- 1
- 9
0
votes
1 answer
Not able to save Azure Logic Apps standard workflow in VS Code after adding Scope shape
This seems very simple, all I am trying is to add a scope shape in the designer of Logic App Standard VS Code and it doesn't get saved whereas without Scope it is saving the workflow. Is this a bug or am i missing something?
without Scope section…

Suraj Revankar
- 135
- 9
0
votes
0 answers
How to trigger the azure devops build pipeline using azure logic app
I am trying to setup a slack integration to trigger the azure build pipeline using azure logic app.
I have completed the setup for slack command to point to logic app http request endpoint url. however i am unable to extract the parameter value…
0
votes
1 answer
Get all records of Select action inside Do Until loop using logic app
There is a do-until loop that iterates 5 times until variable nextIteration = null.
Every iteration has 100 records i.e., 1 iteration = 100 records. Therefore, total records are 5*100 = 500
Now, I want to use above "Select from HTTP request" action…

timz_123
- 435
- 1
- 9
- 47
0
votes
1 answer
How Does When a new email arrives in a shared mailbox (V2) Polling Internally Work
I am doing POC on 'When a new email arrives in a shared mailbox (V2)' polling feature in logic app to monitor the share mailbox. But i have some queries which i could not find resolution in any online portal.
What is the internal functioning on…

Ashutosh
- 111
- 14
0
votes
0 answers
Logic App dynamic Authentication for HTTP connector
I'm using the HTTP connector to connect to MSGraph. The authentication part differs from environments. In nonprod I'll like to use ActiveDirectoryOAuth because I'm target a Test tenant, but in prod I'll to use Managed Identity.
I have tried to do a…

Loc Dai Le
- 1,661
- 4
- 35
- 70
0
votes
0 answers
How to create logic app with name which deleted before
I created a logic app which name is 'lga' in tenantA, but I want to create a new logic app which name is also 'lga' in tenant B. I didn't also create 'lga' logic app in tenant B when deleting logic app in tenant A.
The name was not used in tenant B…

spock
- 1
- 1
0
votes
2 answers
Standard logic app run timeout setting is not working
Azure logic app workflow RunTimeout setting is not working.
Links I followed,
Run duration setting
Host settings
Things I tried,
Added Runtime.Backend.FlowRunTimeout setting in host settings to 30 seconds.
Stopped, Restarted logic app
Added delay…

Vijay
- 72
- 12
0
votes
1 answer
Logic Apps - Read API Results Into SQL Server
In Logic Apps I have an API that returns multiple records in the following format:
{
"meta": {
"pagination": {
"recordStart": 0,
"pageSize": 25,
"next": "eNoNzttugjAfufhyYTZ0PdTjmtav6pr6sFIFZ39AVovz9A7AsXYQ"
},
…

KodeNode
- 45
- 5
0
votes
1 answer
Standard Logic App - Extract Archive to Folder
I have a Consumption Logic App where we Create a .zip blob in a storage account and then extract its content into the same storage, as follows:
We created a Standard Logic App to replace the Consumption one, but the Extract archive to folder (V2)…

nahimmedto
- 25
- 6