get_user_activity_events

Get all user activity events.

Path:
/lib/get_user_activity_events.js

Parameters:

Name

Type

Description

startDateIncrement

Integer

The number of days in the past after which, events are to be retrieved.

endDateIncrement

Integer

The number of days in the past before which, events are to be retrieved.

userGuid

String

The unique ID of the user for whom activity should be retrieved.

ipAddress

String

The IP address for which activity should be retrieved.

includePassedChallenges

Boolean

Specifies 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
}