GetSession
Retrieves a current signing session object from its session Id.
Returns – A SessionResponse containing a Signing Session Id and an array of Session Object(s). (See SessionResponse 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. |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]ServiceAPIClient ws = new ServiceAPIClient();
SessionInfo sessionInfo;
SessionResponse sessionResponse;
sessionResponse = ws.GetSession(encryptedToken, sessionId);
[/gdlr_notification]