In my file
LogicApp.parameters.json
I've declared the extra parameter called MyFirstNewParameter
full file contents below
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion":…
I'm trying to pass an extra query parameter to Azure logic app so that I can process below data in the Logic App workflow
For Example https://logicURL?SelectedData="%7BsiteURL%3AXYZ.sharepoint.com%2Fsites%2FXYZDev%7D" (encoded string)
In HTTP action…
I have an Azure Logical app that every hour gets a file from a website and create a file in OneDrive. Since the file does not have a dynamic name, it gets replaced every time. Is there a way to put the current date time in the filename?
Thank…
I have a For_Each loop in an Azure Logic App that calls another, nested, Logic App. The result from each iteration of the nested Logic Apps is a JSON object that contains an array of strings, like this:
{
"Results": ["string a", "string b"]
}
So…
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…
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…
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"]
In Logic Apps, I have an expression:
coalesce(triggerbody().data.job_id,triggerbody().resource_id,'error')
I basically want to get the first one that is not null, however one of these does not EXIST in the json payload. I get an error:
'The…
I want to parse through a json and update specific nodes in json result according to the following code snippet written in power shell:
foreach($val in $getresult.elements.values)
{
if($val.Name -eq "Config")
…
I am trying to iterate through a JSON array which has been encoded to a string for the purpose of storing on a queue. However, I receive the following error message:
{"code":"ExpressionEvaluationFailed","message":"The execution of
template action…
I am looking for a list of current workflow languages. I know about BPEL, WS-CDL and YAWL. What other current languages are there? A short description of how they operate would be excellent. All suggestions welcome.
Thanks!
I want to read blob contents using azure logic app get blob contents connector and send that contents as attachment via email using azure logic app send email connector.
Attachments could be one or more.
Send email requires attachment data in…
I've noticed that each time I'm using Azure Logic Apps Tools for Visual Studio (v2.11.15) and perform a Save, it surrounds some of the parameters in the josn file with curly brackets.
Eg, for a webhook, "@triggerBody()" becomes "@{triggerBody()}"…
I can't figure out how to build the JSON for an HTTP Post:
ie, this doesn't work where [somevariablehere]. How do I manually concat what I want to post along with some dynamnic variables?
{
"color": "green",
"message": "(awesome)…
I have a scenario wherein I want to invoke the logic app as API (probably HTTP trigger) and at the same time, I would like to invoke the logic in recurrent fashion as well (probably using recurrence trigger). Since there can only be one starting…