1
votes

I am building an integration system using Logic Apps connector to get details of updated records in Dynamics.

I only want to take action when certain fields have changed.

My problem is that the output from the connector shows all the fields after the record is updated.

I'd like to know which fields have changed so my Logic App can decide whether or not to take action.

Does anybody have any ideas? I was thinking of triggering the logic app via HTTP POST and post from inside a custom workflow activity when certain fields change but I wanted to hear if anyone has a better solution first using just the Logic App with Dynamics connector.

1

1 Answers

2
votes

Logic app connector for Dynamics 365 exposing triggers which has record level checkpoints like create/update/delete but does not have field level filtering granularity.

Probably your decision is correct by going with Custom WF activity or a Plugin that triggers on filtering attributes of your choice, then invoking Logic app within Plugin/WF using HTTP POST.