“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 had a very simple event data being provided by the notification repository:
{
"NotificationId": "NOT-00001",
"NotificationType": "SalesOrder.Delivery",
"CustomerId": "CUST-001",
"Status": "New",
"LastModifiedDateTime": "2019-12-20T11:02:28.13"
}
I thought that it was quite an easy setup, but I got stuck for a while setting up the Event Grid Logic App trigger. Why? I was expecting that the trigger would support advanced filters out of the box, on the designer experience, but that’s not the case.
Continue reading “Event Grid Advanced Filtering on Logic Apps”