Retrieve parameter from a SOAP request in a workflow
Hi,
I am trying to start a workflow and send variables through a SOAP request like this:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:xtk:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:PostEvent>
<urn:sessiontoken>___53d35702-7d18-4bb6-b8ec-1f91937a7edc</urn:sessiontoken>
<urn:strWorkflowId>26000231</urn:strWorkflowId>
<urn:strActivity>signal</urn:strActivity>
<urn:strTransition></urn:strTransition>
<urn:elemParameters>
<variables>
<email>your@email.com</email>
</variables>
</urn:elemParameters>
<urn:bComplete></urn:bComplete>
</urn:PostEvent>
</soapenv:Body>
</soapenv:Envelope>
How can I retrieve the information inside <email></email> ?
Here an example of the workflow.
How should I pick up the email (or another variable inside <variables>) inside a JS code?
Thanks in advance,
Salvatore