Hi,
I have successfully generated an sms using a SOAP UI client calling the AP below is the source code:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Header>
<Request xmlns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:ns2="http://ws.easylink.com/JobSubmit/2011/01">
<ReceiverKey>https://messaging.easylink.com/soap/sync</ReceiverKey>
<Authentication>
<XDDSAuth>
<RequesterID>XXXXX</RequesterID>
<Password>XXXXX</Password>
</XDDSAuth>
</Authentication>
</Request>
</S:Header>
<S:Body>
<ns2:JobSubmitRequest xmlns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:ns2="http://ws.easylink.com/JobSubmit/2011/01">
<ns2:DocumentSet/>
<ns2:Message>
<ns2:JobOptions>
<ns2:SmsOptions/>
</ns2:JobOptions>
<ns2:Destinations>
<ns2:Sms>
<ns2:Phone>0419203387</ns2:Phone>
</ns2:Sms>
</ns2:Destinations>
<ns2:Reports>
<ns2:DeliveryReport>
<ns2:DeliveryReportType>detail</ns2:DeliveryReportType>
</ns2:DeliveryReport>
</ns2:Reports>
<ns2:Contents>
<ns2:Part>
<ns2:Document>
<ns2:DocType>text</ns2:DocType>
<ns2:DocData format="text">This is a reminder for your dental appointment at XYZ clinic on 1234 to confirm your attendance please reply Yes to confirm No to cancel. </ns2:DocData>
</ns2:Document>
</ns2:Part>
</ns2:Contents>
</ns2:Message>
</ns2:JobSubmitRequest>
</S:Body>
</S:Envelope>
What I am looking to achieve is to send the above SMS message via the API (already tested OK) and then use the API and make a web services (SOAP) call to retreive the sender responses as per MyPortal Reports > data retreival function.
I cannot determine the best approach to achiveve this from the documentation.
Thanks in advance.