Hi @Ethan_R, thanks for replying. My question is can you determine specifically the trigger of the real-time workflow using a conditional branch.
For example, if I had a flow that was triggered to start on both of these two conditions:
- Start After a record is created
- Start Before a record is deleted
And in the workflow, I wanted to create a record on a different table (Comment), but the details of that Comment would depend on whether the flow was triggered by a record that was getting deleted, or one that was just created. (i.e. If the record was deleted, I want the Comment to say "{Record Name} was deleted", and if a new record was created, I want the Comment to say "A new record was created, called {Record Name}").
In Power Automate, I know you can determine the metadata about the trigger via the SdkMessage property and thus determine the change type of the Dataverse trigger (such as create, modified, or deleted), as is explained here.
Thanks