Once a specific field in dataverse (D365 CE) record changes to "Approved", I want to fire off that contact record's name and email via API, where to start?
Solved! Go to Solution.
Hi @DarrenPlant,
I would start with the trigger action. I would use When a row is added, modified or deleted action for that.
Below is an example of such an setup.
In this example I am using the Account table and a custom choice field called ApprovedStatus (internal field name crca4_approvedstatus). The Approved choice item has an id of 309310001.
1. Within the flow you can use the When a row is added, modified or deleted. Select the correct table name.
In my example that is Accounts, but use whatever table you want.
2. Use your field in the column filter.
In this example that is the ApprovedStatus field (crca4_approvedstatus). So, whenever the ApprovedStatus is changed the flow will trigger.
3. Use a condition in the row filter. In this case we are looking at the Approved value.
With a row filter you can make sure it the flow is only triggered when it is changed to a certain value, in this case Approved.
Hopefully this helps to get you started?
Hi @DarrenPlant,
I would start with the trigger action. I would use When a row is added, modified or deleted action for that.
Below is an example of such an setup.
In this example I am using the Account table and a custom choice field called ApprovedStatus (internal field name crca4_approvedstatus). The Approved choice item has an id of 309310001.
1. Within the flow you can use the When a row is added, modified or deleted. Select the correct table name.
In my example that is Accounts, but use whatever table you want.
2. Use your field in the column filter.
In this example that is the ApprovedStatus field (crca4_approvedstatus). So, whenever the ApprovedStatus is changed the flow will trigger.
3. Use a condition in the row filter. In this case we are looking at the Approved value.
With a row filter you can make sure it the flow is only triggered when it is changed to a certain value, in this case Approved.
Hopefully this helps to get you started?
Thank you, a great starting point.