Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 6
Next »
it.mailupnet.services.MailupSend myService = new it.mailupnet.services.MailupSend();
... // perform login by means of LoginFromId(user, password, myURL) method and obtain accessKey value
string s = myService.GetNewsletters(accessKey, 1); //Returns all that have been messages created within list 1
...//extract errorCode value from received response;
if (errorCode == 0)
{
// enter here if request was successful
// then received response can be parsed to retrieve the messages that belong to specified list
}