Versions Compared

Key

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

...

If error code=0, the message will contain the IDs of all the accessible lists.

Sample GetLists request

Code Block
languagehtml/xml
titleGetLists 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:GetLists>
           <ws:accessKey>HzAgwRRJaAKBtkgNWpkAuURfV4SxMm6T3HJegRuSkUivKJElNNcmSQe8nqGyoM9S8EyQZb6ZE2shjHWIN4f5xYBJx9u</ws:accessKey>
       </ws:GetLists>
    </soap:Body>
</soap:Envelope>

Sample GetLists response

Code Block
languagehtml/xml
linenumberstrue
<GetListsResult>
<errorCode>0</errorCode>
<errorDescription></errorDescription>
<lists>
<list>
<listID>1</listID>
<listName>Lista nr.1</listName>
</list>
<list>
<listID>2</listID>
<listName>Lista nr.2</listName>
</list>
</lists>
</GetListsResult>

...