skip to Main Content

Query Nested JSON Data

I am trying to query using the code below to get the value etoday but it does not return a result. Result = json.loads(json_string) # Next Line works perfect print("The value of msg", "msg", "is: ", Result["msg"]) #Next Line does…

VIEW QUESTION

How to turn a json string into a properly beautified string to be used in email using a Logic App

Logic App "Send_an_email_(V2)": { "inputs": { "body": { "Body": "<p><br></p>n<pre><code>Message 1<br>n<br>n@{variables('Message1')}<br>n<br>nMessage 2<br>n<br>n@{variables('Message2')}</code></pre>n<pre><code><br>n<br>n<br>n<br>n</code></pre>", "Importance": "Normal", "Subject": "Test", "To": "[email protected]" } This is how it looks like in the email. I know the Message 2 has it already nicely formatted but I…

VIEW QUESTION
Back To Top
Search