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.

URI GET rest/v1/sessions/{sessionId}/actionlogs

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″]
string uri = “rest/v1/sessions/{0}/actionlogs”;
string responseString = string.Empty;
JavaScriptSerializer jss = new JavaScriptSerializer();
ActionLogResponse actionLogResponse;

uri = string.Format(uri,signingsessionId);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(host + uri);
request.Headers.Add(“Authorization” , encryptedToken);
request.Method = “GET”;
request.ContentType = “application/json”;

HttpWebResponse response = (HttpWebResponse)request.GetResponse();
responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
actionLogResponse = jss.Deserialize<ActionLogResponse>(responseString);
[/gdlr_notification]