GET /api/domainaudit/users/{num}

Returns the events of the users type. (Event ID in range 100-299). An optional {num} parameter can be set which returns a maximum number of the events. If this {num} parameter is not specified, a maximum number of 1000 events is returned.

Each message consist is returned as a JSON string in the following format:

{
    "events": [
        {
            "message": "Admin user 'admin' connected",
            "eventId": 112,
            "user": "admin",
            "outcome": "success",
            "additionalInfo": "",
            "timeStamp": 1435934085927,
            "metaData": {
                "userID": "admin"
            }
        }
    ]
}