Questions tagged [workflow-definition-language]

The Workflow Definition Language (WDL) defines data processing workflows in [power-automate] and [azure-logic-apps]

Overview

The Workflow Description Language (WDL) defines data processing workflows in power-automate and azure-logic-apps.

See also

26 questions
18
votes
1 answer

Declaring and using a "parameter" in Logic Apps

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":…
13
votes
3 answers

How to get query parameters in a Logic App?

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…
9
votes
2 answers

Azure logical app current time

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…
7
votes
5 answers

How can I merge the outputs from a For_Each loop in an Azure Logic App to a single flat array?

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…
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
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…
4
votes
1 answer

Join two arrays in Logic Apps

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"]
4
votes
1 answer

logic apps - cannot be evaluated because property doesn't exist

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…
4
votes
1 answer

Update json in logic apps

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") …
4
votes
2 answers

Parsing JSON array in Azure Logic App from base64 encoded string to use in For_each

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…
3
votes
4 answers

Workflow languages?

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!
flesh
  • 23,725
  • 24
  • 80
  • 97
2
votes
2 answers

Azure Logic app : How to Send an Email with one or more attachments after getting the content from Blob storage?

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…
2
votes
1 answer

Curly brackets in Logic Apps parameters

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()}"…
Horia Toma
  • 1,099
  • 2
  • 17
  • 29
2
votes
1 answer

Azure Logic App HTTP Post build JSON with Dynamic Variables

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)…
lucuma
  • 18,247
  • 4
  • 66
  • 91
1
vote
3 answers

Issue with Logic App having multiple triggers

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…
1
2