GET /api/domainaudit/user/{user}

Returns the events for a user given the user's name. A maximum number of 1000 events is returned.

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

{
    "events": [
        {
            "message": "API Gateway instance 'Node Manager on localhost' on group 'Node Manager Group' started",
            "eventId": 2,
            "user": "root",
            "outcome": "success",
            "additionalInfo": "",
            "timeStamp": 1435933548870,
            "metaData": {
                "serviceID": "nodemanager-1",
                "groupID": "group-1"
            }
        }
    ]
}