Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagehtml/xml
titleSOAP Request
firstline1
linenumberstrue
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ws="http://services.mailupnet.it/WS">
   <soap:Header/>
   <soap:Body>
      <ws:CloneMessage>
         <!--Use accessKey value that is returned by LoginFromId method-->
         <ws:accessKey>HzAgwRRJaAKBtkgNWpkAuURfV4SxMm6T3HJegRuSkUivKJElNNcmSQe8nqGyoM9</ws:accessKey>
	 <ws:listId>7</ws:listId>
	 <ws:listGuid>94abaa1a-e215-4c3d-8a9c-5c66b802d</ws:listGuid>
         <ws:messageToCloneId>74</ws:messageToCloneId>
         <ws:subject>I'm a cloned message</ws:subject>         
      </ws:CloneMessage>
   </soap:Body>
</soap:Envelope>

 

Sample CloneMessage response

Code Block
languagehtml/xml
titleSOAP Response (error case)
firstline1
linenumberstrue
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <CloneMessageResponse xmlns="http://services.mailupnet.it/WS">
         <CloneMessageResult>-1</CloneMessageResult>
      </CloneMessageResponse>
   </soap:Body>
</soap:Envelope>

...