Versions Compared

Key

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

...

  • string Login(string user, string pwd, string url)
  • user: username to access the MailUp console
  • pwd: password to access the MailUp console
  • url: console URL 
Note
titleURL Formatting
URL field must be inserted specifying the third level domain of the console (es. abcd.s02.com); the call returns an error if the complete URL is inserted (e.g.http://abcd.s02.com/).
Info
titleDeprecated Login Method
Login method

Login method was removed from this document and is to be considered deprecated starting from MailUp release 7.4

: LoginFromId is the recommended method. See below for details.

Once the accuracy of the inserted data has been checked, a LoginResult string containing the outcome of the operation is returned, and in case of successful login, it will also contain the accessKey to be used to call all the other methods.

Sample LoginResult response

Code Block
languagehtml/xml
<LoginResult>
 <errorCode>0</errorCode>
 <errorDescription></errorDescription>
 <accessKey><![CDATA[accessKey]]></accessKey>
</LoginResult>

Sample Login code

...

. It was replaced by LoginFromId method.

LoginFromId method

This method is available only from MailUp release 7.4 and it's very similar to the previous one (Login) but it allows to specify an account ID instead of a console URL. The main benefit lies in the fact that a URL limits the use of the infrastructure, whereas a fixed reference like the console ID makes it easier to move the administration console on a higher-performing hardware, if needed. There would be little or no malfunction, as the customer's applications would keep on working after the operation.

...