GET /api/domainaudit/{id}/{num}

Returns the events of a given ID type. An optional {num} parameter can be set which returns a maximum number of the events. If this {num} paramter 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": [
        {
            "eventId": 112, 
            "message": "User 'admin' logged into the system", 
            "metadata": {
                "admin": "admin"
            }, 
            "timestamp": 1352996174703
        }
    ]
}