Get Get Audit Report

Get Get Audit Report

Optional filters can be applied which will return only audit events that match all the filters specified. Not currently available on the hosted product.

Request
URI
GET
https://{api_host}//SAAS/jersey/manager/api/reporting/reports/audit
COPY
Query Parameters
string
actorUserName
Optional

filter events generated by this user

actorUserName example
[email protected]
string
objectType
Optional

filter specific types of audit events or affected objects

string
objectAction
Optional

filter specific actions

Possible values are : CREATE, DELETE, UPDATE, LINK, UNLINK,
string
linkedObjectType
Optional

filter specific types of linked to object types, only applicable for LINK and UNLINK actions

string
objectName
Optional

filter events that affect a specific object instance

integer
fromMillis
Optional

filter events no older than this time, milliseconds since epoch, defaults to 3 days ago (now-96 hours)

integer
toMillis
Optional

filter events no newer than this time, milliseconds since epoch. Defaults to now

integer
startIndex
Optional

Use offset to page through the results

startIndex example
2000
integer
pageSize
Optional

Max page size of the results, max allowed value is 5000

pageSize example
1000

Authentication
This operation uses the following authentication methods.
Responses
200

successful operation

Returns ReportsTable of type(s) application/vnd.vmware.horizon.manager.reports.table+json
{
    "header": [
        "string"
    ],
    "headerArg": [
        "string"
    ],
    "data": [
        [
            {}
        ]
    ]
}
array of string
header
Optional

The headers for each column, as i18n messages

array of string
headerArg
Optional

The values of any positional arguments for the header messages (max one per header)

object
_links
Optional

_links

array
data
Optional

The table rows. Each entry represents an audit event and each audit even is represented by an array of 5 elements:

    " + "
  • 1. Formatted date and time of the event
  • " + "
  • 2. Who performed the event
  • " + "
  • 3. Simple summary of the event
  • " + "
  • 4. The object affected by the event
  • " + "
  • 5. The full details of the event as JSON serialized Action or Audit objects
  • " + "


400

One or more of the the specified query parameters are invalid

Operation doesn't return any data structure