get_user_activity_events

Get all user activity events.

Path:
/lib/get_user_activity_events.js

Parameters:

NameTypeDescription
startDateIncrementIntegerThe number of days in the past after which, events are to be retrieved.
endDateIncrementIntegerThe number of days in the past before which, events are to be retrieved.
userGuidStringThe unique ID of the user for whom activity should be retrieved.
ipAddressStringThe IP address for which activity should be retrieved.
includePassedChallengesBooleanSpecifies if challenges that were satisfied should be included in the results.

Example Request:

POST /redrock/query

{
	"Script":"@/lib/get_user_activity_events.js",
	ars:
	{
		"startDateIncrement" : -2,
		"endDateIncrement" : -1,
		"userGuid": "BC34...",
		"ipAddress": "12.34.56.78",
		"includePassedChallenges" : true
	}
}

Example Response:

{
    "success": true,
    "Result": {
        "IsAggregate": false,
        "Count": 0,
        "Columns": [],
        "FullCount": 0,
        "Results": [],
        "ReturnID": ""
    },
    "Message": null,
    "MessageID": null,
    "Exception": null,
    "ErrorID": null,
    "ErrorCode": null,
    "InnerExceptions": null
}