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

Version 1 Next »

 

AuthenticationLogin

This method returns access token that has to be used with further method calls

Method parameters

ParameterDescriptionExample
UsernameAPI username (fixed name: 'a' + consoleId) or console usernamea1234
PasswordPassword for specified user 
IdConsoleNumber that identifies console ID1234

 

SOAP Examples

SOAP request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:iaut="http://Mailup.WS/IAuthenticationService">
   <soapenv:Header/>
   <soapenv:Body>
      <iaut:AuthenticationLogin>
         <iaut:request>
            	<iaut:Username>a1234</iaut:Username>
		<iaut:Password>cbdwex4</iaut:Password>
		<iaut:IdConsole>1234</iaut:IdConsole>
         </iaut:request>
      </iaut:AuthenticationLogin>
   </soapenv:Body>
</soapenv:Envelope>
SOAP response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <AuthenticationLoginResponse xmlns="http://Mailup.WS/IAuthenticationService">
         <AuthenticationLoginResult>
            <Token>g9s2gNlB2oIxCVM7wTHmA8rkV7JAAKtmIVVMvUDY/CnYuEMZvWyUZNGgxVaoBr1YU3MBbENC/9xk=</Token>
         </AuthenticationLoginResult>
      </AuthenticationLoginResponse>
   </s:Body>
</s:Envelope>

 

AuthenticationLogout

This method disposes the token that has been obtained by AuthenticationLogin method.

Method parameters

ParameterDescriptionExample
TokenToken obtained by AuthenticationLogin  

 

SOAP Examples

SOAP request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:iaut="http://Mailup.WS/IAuthenticationService">
   <soapenv:Header/>
   <soapenv:Body>
      <iaut:AuthenticationLogout>
         <iaut:request>
         <iaut:Token>g9s2gNlB2oIxCVM7wTHmA8rkV7JAAKtmIVVMvUDY/CnYuEMZvWyUZNGgxVaoBr1YU3MBb=</iaut:Token>
	 </iaut:request>
      </iaut:AuthenticationLogout>
   </soapenv:Body>
</soapenv:Envelope>
SOAP response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <AuthenticationLogoutResponse xmlns="http://Mailup.WS/IAuthenticationService">
         <AuthenticationLogoutResult/>
      </AuthenticationLogoutResponse>
   </s:Body>
</s:Envelope>

 

 

  • No labels