Hi all,
I'm pretty much new to Power Automate, so still learning it's features. I wanna read an xml file and get the response of a certain "field". My xml looks like this and I want to get the "DNI":
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ExponerInfoPacResponse xmlns="http://tempuri.org/">
<ExponerInfoPacResult xmlns:a="URLFlorence">
<a:HasError>false</a:HasError>
<a:Message i:nil="true" />
<a:Listado>
<a:clsPacientesExponerInfoDTO>
<a:CodAseguradora>00145</a:CodAseguradora>
<a:CodColectivo>00261</a:CodColectivo>
<a:DNI>10397501</a:DNI>
<a:DescripcionAseguradora>C. SANIDAD</a:DescripcionAseguradora>
<a:DescripcionColectivo>OTROS DPTOS</a:DescripcionColectivo>
<a:FechaNacimiento>1959-09-23T00:00:00</a:FechaNacimiento>
<a:OtrosID />
<a:TipoOtrosID />
<a:Verificado>true</a:Verificado>
</a:clsPacientesExponerInfoDTO>
</a:Listado>
</ExponerInfoPacResult>
</ExponerInfoPacResponse>
</s:Body>
</s:Envelope>
Would anyone help me on how to get the XPath query to reach that point?
Thank you in advance :)