AuditRequest

AuditRequest
AuditRequest

Audit request object, defines the request parameters required to get the audit trail.

JSON Example
{
    "deDupKey": "Name:NOTIFICATION-Switch_SDIRouter4_Down__200601$Source:INCHARGE-SA-PRES4$",
    "source": "INCHARGE-SA-PRES4",
    "firstNotifiedAt": 1614687329000,
    "vsafilter": {
        "filterlist": [
            {
                "condition": "OR",
                "propfilter": [
                    {
                        "propname": "ActionType",
                        "matchtype": "EQ",
                        "values": [
                            "SOURCE-NOTIFY"
                        ]
                    }
                ]
            }
        ]
    },
    "sort": [
        {
            "fieldName": "ActionType",
            "order": "asc"
        }
    ],
    "from": 0,
    "size": 50
}
string
deDupKey
Required

deDupKey, uniquely identifies the notification across domains.

string
source
Required

The origin source of the notification. If source is not defined in notification, pass an empty value "".

number
firstNotifiedAt
Required

The timestamp of notification, when it was first notified.

array of Sort
sort
Optional

The Sort object defines on how and which field sorting has to be applied.

vsafilter
Optional

The VSAFilter object defines how the filters has to be applied on queries.

integer
from
Optional

The from parameter defines the offset from the first result you want to fetch. Defaults to 0.

integer
size
Optional

The size parameter allows you to configure the maximum amount of records to be returned. Defaults to 50.

Parameter To