create XPATH from XLM

  • 16 March 2019
  • 1 reply
  • 14 views

Badge +7

I get this xml from we service action:

<xml>
<GetGroupCollectionFromUser xmlns="http://schemas.microsoft.com/sharepoint/soap/directory/">
<Groups>
<Group ID="54" Name="EE_WKF_Approvers" Description="" OwnerID="2" OwnerIsUser="True" />
</Groups>
</GetGroupCollectionFromUser>
</xml>
In Query Xml action what i need put in Xpath to get value from the Name

1 reply

Badge +7

This should work

//defaultNS:Group/@Name

Reply