Hi Naveen,
Thanks for your reply. We are using this query to get the list from audit in Ms flow. I want the old value and new value with this query .
<fetch>
<entity name="audit" >
<attribute name="regardingobjectid" />
<attribute name="auditid" />
<attribute name="action" />
<attribute name="objectidname" />
<attribute name="createdon" />
<attribute name="objectid" />
<attribute name="attributemask" />
<attribute name="objecttypecode" />
<attribute name="userid" />
<attribute name="useradditionalinfo" />
<attribute name="useridname" />
<filter>
<condition attribute="objecttypecode" operator="eq" value="3" />
<condition attribute="createdon" operator="yesterday" />
</filter>
<link-entity name="opportunity" from="opportunityid" to="objectid" >
<attribute name="ig1_projectnumber" />
<attribute name="new_estprojectcompletion" />
<attribute name="ig1_bestsalesestimate" />
<attribute name="estimatedclosedate" />
<attribute name="ig1_salesstagenew" />
<attribute name="statecode" />
<filter>
<condition attribute="statecode" operator="eq" value="0" />
</filter>
</link-entity>
</entity>
</fetch>