GetSessionsByTransactionId

This call will get deprecated in the near future, the preferred call to make is the paginated call GetSessionsLiteByTransactionId which will get released in December 2019.

Retrieves an array of SigningSession object(s) by an individual transaction Id.

Returns – A SessionResponse containing 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.
transactionId string Required. Clients’ system transaction id for the transaction
username string Required. User’s username, their email address.

Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]
ServiceAPIClient ws = new ServiceAPIClient();

SessionResponse sessionResponse;

sessionResponse = ws. GetSessionsByTransactionId(encryptedToken, “transactionId“, “username”);

[/gdlr_notification]