Use Azure Logic Apps with custom JSON payloads Thursday, January 14, 2021 8:51 PM Christoph Wilfing Did you ever have the problem of pushing different JSON payloads to a logic app and hitting errors due to JSON schema mismatches? The usual HTTP Request forces you to define the JSON Schema at the beginning. For every tiny difference in the later used properties you need to create your own Logic App even if the process is the same. I will show you an example of a single Logic App deciding at runtime which JSON schema to use for decoding the post body payload. Stay tuned!We will start with an empty Logic App and the typical HTTP Request. This will trigger the logic app and start our journey.The HTTP post body schema is a simple one with a single value called "Request" of type string and a another one called "RequestValue" of type object. We are not going into more detail of the RequestValue object because we don't want the initial request to break if the rest of the JSON is different. So, we plan to call the endpoint with a HTTP POST request with a body similar as here:{"Request": "test1","RequestValue": "{ ...something... }"}As next action, we add a switch operation to react depending on the Request.This basic schema allows us to use the automatic created request property of the HTTP Request as input to our switch statement in the next step. Sample requests to this Logic App could be payloads as here:Version 1:{"Request": "test1","RequestValue": { "Testvalue" = "test" }}Version 2:{"Request": "test2","RequestValue": { "Testvalue1" = 1, "Testvalue" = "1234" }}etc...Each case in the switch statement corresponds to one version of JSON payload we can drop into the logic app.Based on the first "Request" Property value and the switch decision we can now build our second stage of JSON payload parsing. The Parse JSON step takes the object of the response value of the HTTP trigger and can be filled with different schemas for each execution tree in the switch statement.Above you see the schema for one of the payloads. A very simple one, but you can get as creative as you like or need to. You can test the logic app with different payloads with a few lines of powershell code (yes, you can use Postman or other tools, too). Just create a few more case statements in the switch and post different bodies to the Logic App as shown below.Invoke-RestMethod -Method Post -Uri $Uri -Headers $Header -Body $(Body1 | ConvertTo.Json)If we look at the output of the commands, we can see the response of the Logic App from the different Switch Paths.With these steps you can have a single Logic App to distinct between different JSON Payloads and react based on the initial HTTP requests without hitting an error on the first request. Dynamic requests can be handled with a single Azure Logic App.Have Fun! Azure | Flow | Logic apps | Microsoft | PowerShell | Cloud | Developer | English Mediumlink | Permalink | Comments (0) | Post RSS mehr
Working with Azure AD schema extensions and Microsoft Graph Tuesday, December 29, 2020 10:30 PM Toni Pohl Azure Active Directory is Microsoft´s Cloud Identity system that stores user, license, group, apps, device data and more data in a secure way. As developers, we can extend many of these resources with custom extension. This can be useful to store additional metadata, such as a cost center or personal data for a user, for a group or other resource types. Unfortunately, there isn't much documentation on that. Here's how to do this step-by-step for the user resource with Azure AD schema extensions in real life. Azure | Cloud | Developer | English | Graph | Microsoft | Microsoft365 | Office365 | PowerShell Mediumlink | Permalink | Comments (1) | Post RSS mehr
PowerShell package 'Az.Accounts' failed to download Sunday, September 20, 2020 9:00 PM Martina Grom I recently ran into this problem: I had to install the Azure Az PowerShell module from the PowerShell Gallery on a new computer. Interestingly the installation with Install-Module -Name Az failed with the error message "WARNING: Source Location 'https://www.powershellgallery.com/api/v2/package/Az.Accounts/1.9.3' is not valid.". See my solution here. Azure | Cloud | Developer | English | Microsoft | Microsoft365 | Office365 | PowerShell | Tools Mediumlink | Permalink | Comments (1) | Post RSS mehr
Join us at the Global Microsoft 365 Developer Bootcamp - Austria Tuesday, August 18, 2020 2:00 PM Toni Pohl Global Microsoft 365 Developer Bootcamp is back! This year the event will take place virtually from more than 100 cities worldwide. Join us at our Microsoft 365 Developer Bootcamp - Austria on November, 13th, 2020! Azure | Cloud | Developer | English | Microsoft | MVP | Microsoft Teams | Microsoft365 | Office365 | PowerApps | PowerShell | Event | Visual Studio | SharePoint Mediumlink | Permalink | Comments (0) | Post RSS mehr
Get Administrator roles and Privileged Identity Management roles of an Azure AD tenant Thursday, July 16, 2020 5:00 AM Toni Pohl To ensure the security of your Microsoft 365 client, we recommend implementing an appropriate governance and security strategy. An effective measure is to determine the current administrators and their permissions. In this article, we want to identify administrators with permanent roles and administrators who can use roles with Privileged Identity Management (PIM). PIM provides just-in-time privileged access to Azure AD and Azure resources. See how to find all Administrators, including PIM, here. Azure | Cloud | Developer | English | Governance | Microsoft | Microsoft365 | Office365 | PowerShell | Security | Tools Mediumlink | Permalink | Comments (1) | Post RSS mehr
Run a PowerShell script as a different user Thursday, June 25, 2020 8:05 PM Toni Pohl Sometimes it´s required to run a script as a service user on a Windows machine, e.g. for reading file shares as a different user with different permissions or similar tasks. You can easily do this using the following two methods. Developer | English | Microsoft | PowerShell | Security | Tools Mediumlink | Permalink | Comments (1) | Post RSS mehr
Watch the sessions of #GalacticSummit Friday, June 19, 2020 7:00 AM Martina Grom Galactic Summit was THE Microsoft 365 online conference that happened on June 2nd and June 9th, 2020 on USS Defiant, USS Voyager, USS Enterprise, USS Discovery and La Sirena with over 8000 attendees. You can now watch the sessions online! Cloud | English | Event | Microsoft | MVP | Microsoft365 | Office365 | PowerShell | Governance | Security | atwork Mediumlink | Permalink | Comments (0) | Post RSS mehr
Microsoft 365 Virtual Marathon and Microsoft 365 for crisis communication resources Wednesday, May 27, 2020 11:00 AM Martina Grom Microsoft 356 helps you communicate from anywhere. Today, the Microsoft 365 Virtual Marathon online event starts and I show different services like the quick to use crisis communication SharePoint site the Microsoft Health Care Bot service and more. Check out the Microsoft 365 Virtual Marathon and see how to start with these two services here. Azure | Blog | Cloud | Governance | Microsoft | Microsoft365 | Microsoft Teams | Office365 | PowerShell | Security | Serverless | SharePoint | Tools | atwork | Developer | English | Event Mediumlink | Permalink | Comments (0) | Post RSS mehr
Watch our sessions of #GlobalAzure Virtual Austria 2020 Sunday, May 10, 2020 7:00 PM Toni Pohl As in the previous years, we were proud to be part of the Global Azure Virtual - formerly known as the Global Azure Bootcamp - event on April 24, 2020. Because of the Corona pandemic, the word-wide event went virtual and was distributed as Microsoft Teams Live events, organized by the Coding Club Linz. If you could not attend live, you now can watch some sessions that are already uploaded to Youtube. Find them here! Azure | Blog | Cloud | English | Event | Microsoft | MVP | Microsoft365 | Office365 | PowerShell | Security | Governance | Tools Mediumlink | Permalink | Comments (0) | Post RSS mehr
Get the daily Bing picture as background in your Teams meetings automatically Friday, May 8, 2020 1:00 AM Martina Grom The Microsoft Bing Search Engine provides a professional and beautiful picture every day, you can see it online at www.bing.com. With the Bing API, you can easily get the images for your own use, e.g. to use them as custom background image in your Microsoft Teams calls. See how this works and download the ready-to-use PowerShell script here. Developer | English | Funstuff | Microsoft | Microsoft Teams | Microsoft365 | Office365 | Open Source | PowerShell | Tools Mediumlink | Permalink | Comments (2) | Post RSS mehr
Get more OneDrive for Business storage Wednesday, April 1, 2020 5:00 AM Martina Grom Today´s another quick tip for Microsoft 365 users: If you are using OneDrive for Business (OFB) and encounter the default 1 TB storage limitations, there is a way to get more storage space. Cloud | English | Microsoft | Microsoft365 | Office365 | Governance | PowerShell | SharePoint Mediumlink | Permalink | Comments (0) | Post RSS mehr
Check out Microsoft Graph PowerShell Thursday, January 23, 2020 4:00 PM Toni Pohl Microsoft Graph PowerShell module made it to the PowerShell Gallery! So, now you can try it out on your computer by simply running the Install-Module Microsoft.Graph.Authentication command. See more here. Azure | Cloud | Developer | English | Microsoft | Microsoft365 | Office365 | Open Source | PowerShell | Graph Mediumlink | Permalink | Comments (1) | Post RSS mehr