CancelSession
Cancels 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 the token has expired or is invalid. |
sessionID | string | Required. The ID of the session being canceled |
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.CancelSession(encryptedToken, sessionId, returnURL);
[/gdlr_notification]