DeleteSession
Deletes 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 continue
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 deleted. |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]
ServiceAPIClient ws = new ServiceAPIClient();
RequestResponse requestResponse;
requestResponse = ws.DeleteSession(encryptedToken, “sessionId”);
[/gdlr_notification]