I am using the Dataverse connector for Microsoft Flow. I am using the Delete trigger to run my flow whe a row is deleted. I then would like to call an 3rd party API, but I need other fields from the row being deleted than is provided in the body of the delete trigger.
For example, the delete trigger body has the following:
{
"id": "<guid>",
"ItemInternalId": "<guid>",
"SdkMessage": "Delete",
"RunAsSystemUserId": "<guid>"
}
But I need field someotherfield
from this Entity Table in my logic. But I can't query it from the "id" field, because the row was just deleted. Can I customize what is passed in the body somehow?