GET /api/domainaudit/applications/{num}

Returns the events of the application type. (Event ID in range 500-699). 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": "Application 'New iPhone App' created by User 'admin'",
            "eventId": 500,
            "user": "N/A",
            "outcome": "success",
            "additionalInfo": "N/A",
            "timestamp": 1352996174703,
            "metadata": {}
        }
    ]
}