GetLandingURL
Used to retrieve a landing URL for the user’s client eSign application based on a using an encrypted token. This is mainly used by the eSign Printer.
Returns – A RequestResponse containing the user’s landing URL string in the ReturnValue property. (See RequestResponse in Appendix B)
Parameters
Name | Type | Description |
---|---|---|
encryptedToken | string | Required. Encrypted Token returned from client authentication. Returns null if token has expired or is invalid. |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]ServiceAPIClient ws = new ServiceAPIClient();
RequestResponse requestResponse;
string landingURL = string.Empty;
requestResponse = ws.GetLandingURL(encryptedToken);
landingURL = requestResponse.ReturnValue;
string autologinUrl = landingURL+”token={0}&user={1}”;
string uri = string.Format(autologinUrl, encryptedToken, user);
System.Diagnostics.Process.Start(autologinUrl);
[/gdlr_notification]