How to extract a value from a SOAP response and Pass it to another SOAP Request
I'm trying to pass a specific Value from a SOAP Response to a different SOAP Request Field.
What I'm trying to achieve is to get the TransID's FieldValue. I'm trying to achieve this using the Property Transfer but I'm failing.
<a:Records>
<a:Document>
<a:DocumentState i:nil="true"/>
<a:Fields>
<a:Field>
<a:FieldName>IndNo</a:FieldName>
<a:FieldValue>43</a:FieldValue>
</a:Field>
<a:Field>
<a:FieldName>DocNo</a:FieldName>
<a:FieldValue>-1</a:FieldValue>
</a:Field>
<a:Field>
<a:FieldName>TransID</a:FieldName>
<a:FieldValue>5had-asde-123n-fdf4</a:FieldValue>
</a:Field>
<a:Field>
<a:FieldName>AccountType</a:FieldName>
<a:FieldValue>Existing</a:FieldValue>
</a:Field>
</a:Fields>
</a:Document>
</a:Records>
Anyone who can assist me on this?