Tag: logic apps

  • And all of a sudden, its 2022!

    And with that, another year goes by. Another year where communities had to revamp themselves and learn how to thrive in a online world. Here in NZ, after what started to look like we were pretty much bat to normal life, the reality of living during a pandemic stroked back, like the villain in the…

  • Calling API Management from Azure Function using Managed Identities

    One of the solutions I am consulting on today is securing a number of APIs with OAuth with client credential flow, using Azure Active Directory as the identity provider. Those APIs are exposed via Azure API Management, which makes the validation of the access tokens provided as simple as injecting a policy at a product,…

  • Azure Functions with a Static Outbound IP Address

    “So to complete our configuration we just need your outbound static IP…” This is something that pops up again and again, specially if you work integrating legacy systems, like banks, government agencies or other older systems that requires a static IP Address to add to firewall inbound rules. In the past I had to use…

  • Recapping Integrate 2020

    Last week I’ve attended the Integrate conference once again. It was my 5th time attending the conference, and the 4th time I’ve participate as a speaker. But Integrate 2020  was quite a different experience from the last years. Dubbed Integrate 2020 Remote, to reflect the fact that was yet another event that had to adapt…

  • MS Build Recap – The AIS Edition

    This year’s MS Build was very different – we all know that. But for most of us, me included, was the first opportunity to join the event officially. And what event it was. Ran across three time zone, with a mix of live sessions, Teams Live events and smaller Teams events, like focus groups, which…

  • Event Grid Advanced Filtering on Logic Apps

    “It was the week before Christmas, and…” and I was actually super busy! One of my main tasks on that week was to implement notifications when a legacy Dynamics AX, still running on-premises, had orders ready to delivery. My solution was relatively simple (although needed to be generic enough to include other notifications later): I…

  • Integrate 2019 in Review

    I was on my flight back from London, returning from Integrate 2019, when I started this blog post. It was a very long flight, around 24 hours each way, but even if the jetlag hit me really hard this time around, it wsa worth it. Integrate grew from an initiative from a group of BizTalk…

  • Logic App Trigger Conditions

    During December’s episode of Integration Downunder, Alessandro Moura showed a recap of the main features that announced for Logic Apps throughout the year. If you didn’t watch it on the day, you should take a look at the webcast. One of the features that caught my attention, which I haven’t seen before, was the trigger…

  • Resetting the State of a Logic App Trigger

    This week we’ve been preparing for a Go Live in a project that integrates Dynamics 365 Field Services with an on-premises system . Part of this process was to run a series of migration script to get data from the on-prem system into D365. Since D365 pushes the information into logic apps, I thought that…

  • Omitting Empty Elements on JSON Payloads

    I am working on a Logic Apps project where the client API validates the elements before saving, and is not expecting null values to come through. For example, in the payload below: It doesn’t expect the data like showed above (which is fair enough), but also don’t like “AlternateEmail”: null. Instead it expects the AlternateEmail…