...
Output Value | Description | Type |
---|---|---|
AuthToken | Value can be used for autologin to Partner Dashboard according to pattern https://dashboard.managedoffsitebackup.net/Account/Login?uid={username}&token={tokenstring}, see example below The access token has a “time-to-live” (ttl) - 30 minutes. | string |
Example:
Request
Code Block |
---|
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Header> <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">sosonlinebackup.com/GetAuthorizationTokenByEntity</Action> <h:AuthHeader xmlns="sosonlinebackup.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:h="sosonlinebackup.com"> <UserName>AacmeES</UserName> <Password>V******</Password> </h:AuthHeader> </s:Header> <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <GetAuthorizationTokenByEntity xmlns="sosonlinebackup.com"> <request> <Username>sdk.test@sosonlinebackup.com</Username> <IsAppUser>false</IsAppUser> </request> </GetAuthorizationTokenByEntity> </s:Body> </s:Envelope> |
...