NotificationRequest
NotificationRequest
Request body is optional. User requires to provide request body only when filtering, sorting or pagination is required. For filtering notification, user must provide "VsaFilter" in request body.
JSON Example
{
"size": 10,
"sort": [
{
"fieldName": "LastChangedAt",
"order": "desc"
}
],
"vsafilter": {
"filterlist": [
{
"condition": "OR",
"propfilter": [
{
"matchtype": "MATCH",
"propname": "Severity",
"values": [
1
]
},
{
"matchtype": "MATCH",
"propname": "Severity",
"values": [
2
]
}
]
}
]
}
}
integer
size
Optional
The size parameter allows you to configure the maximum amount of notifications to be returned. Default is 10.
integer
from
Optional
The from parameter defines the offset from the first result user want to fetch. Default is 0.
vsafilter
Optional
The VSAFilter object defines how the filters has to be applied on queries.