...
If error code=0, the message will contain the IDs of all the accessible lists.
Sample GetLists request
Code Block |
---|
language | html/xml |
---|
title | GetLists request |
---|
firstline | 1 |
---|
linenumbers | true |
---|
|
<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 |
---|
language | html/xml |
---|
linenumbers | true |
---|
|
<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> |
...