azure-logic-apps

How to loop through an array in a logic app?

ⅰ亾dé卋堺 提交于 2020-12-12 10:05:20
问题 I have managed to get all my userdata in an array (see here) but now I cannot loop through the data. After building the array I have converted it to JSON, but I can no longer address the fields as defined in my JSON schema. The only thing I can address in my loop (I use the JSON body as input for the For Each loop) is the body itself, not the individual fields like username, mail address etc. Should I change something in my JSON schema to overcome this or is something else wrong? Edit: Please

Logic app read property of json stored in variable

房东的猫 提交于 2020-12-10 07:56:07
问题 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", } 回答1: You said your json is a variable, but you don't mention which type it's stored. Stored as string. In this way the whole json is a string, it's not supported to select property. So you need parse it to Json with Parse JSON action then you will be able to select

How to use parameters for salesforce API connection while deployment of Logic app?

那年仲夏 提交于 2020-12-07 08:50:40
问题 I have developed a Logic app and want to deploy it using parameter file. When we use service bus connector into logic app we have service bus connection string so we can make it as a parameter for service bus connection string . But while using salesforce connector it will ask for login into designer panel and generate a API connection for salesforce . But while deployment i do not find any connection string or login credential url for salesforce connector . I wonder how it will work for

How to use parameters for salesforce API connection while deployment of Logic app?

元气小坏坏 提交于 2020-12-07 08:47:15
问题 I have developed a Logic app and want to deploy it using parameter file. When we use service bus connector into logic app we have service bus connection string so we can make it as a parameter for service bus connection string . But while using salesforce connector it will ask for login into designer panel and generate a API connection for salesforce . But while deployment i do not find any connection string or login credential url for salesforce connector . I wonder how it will work for

Date comparison in azure logic app get entities connector

拈花ヽ惹草 提交于 2020-12-06 16:26:08
问题 I have a logic app , which needs to pickup records from azure table storage based on a condition where event_time (one of the field in table) >= current time +24 (hrs) I have tried to implement above logic as I am getting following error { "odata.error": { "code": "InvalidInput", "message": { "lang": "en-US", "value": "')' or operator expected at position 24 in '(event_date_time gt 2020-10-06T21:52:30.2795067Z)'. } } } Is there any way to implement above logic in azure logic app 回答1: For this