CloseSession
Close a current signing session.
Returns – A RequestResponse containing a string (“True” or “False”) representation of a Boolean indicating whether or not the call was a success or failure in the ReturnValue. (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. |
sessionID | string | Required. The ID of the session being cancelled |
returnURL | string | Required. Your Host URL |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]
ServiceAPIClient ws = new ServiceAPIClient();
RequestResponse requestResponse;
requestResponse = ws.CloseSession(encryptedToken, sessionId, returnURL);
[/gdlr_notification]