GetSessionActionLogs
Retrieves an array of ActionLog object(s) by session Id. An action log object contains a date, IP address, and a description for the action.
Returns – An ActionLogResponse containing ActionLog Object(s) in the Actionlog array. (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 signing session. |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]ServiceAPIClient ws = new ServiceAPIClient();
ActionLogResponse actionLogResponse;
actionLogResponse = ws.GetSessionActionLogs(encryptedToken, sessionId);
[/gdlr_notification]