Get Event Filters under a Specific Node

get

/api/eventNavigation/Events/readForTree

Gets event filter groups in a format suitable for tree grids.

Request

Query Parameters
  • The node ID in event filter group tree. The ID value can be special values such as root (Global folder), private (Private Filters folder), meta (MetaTags folder) or event filter group ID.
    Example:
    root

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : SuccessfulGetOperation
Type: object
Show Source
Nested Schema : type
Type: object
Show Source
Nested Schema : data
Type: array
The list of event filter groups.
Show Source
Example:
[
    {
        "text":"Private Filters",
        "id":"private",
        "expanded":false
    },
    {
        "text":"Filters by Group: Global",
        "id":"1",
        "expanded":false,
        "viewTitle":"Global"
    },
    {
        "text":"Filters by MetaTags",
        "id":"meta",
        "expanded":false
    },
    {
        "id":"Filter-1-7",
        "text":"Acked Events",
        "viewTitle":"Acked Events",
        "leaf":true,
        "iconCls":"icon-filter",
        "view":"#events?FilterType=FilterID&FilterValue=7&DisplayID=1&FilterGroupID=1&viewTitle=Acked%20Events"
    }
]
Nested Schema : items
Type: object
Show Source
  • The CSS class for the filter icon.
    Example: icon-filter
  • The unique identifier for the filter.
    Example: Filter-1-7
  • Indicates whether this is a leaf node in a hierarchy.
    Example: true
  • The display text for the filter.
    Example: Acked Events
  • The URL or path for navigating to this filter.
    Example: #events?FilterType=FilterID&FilterValue=7&DisplayID=1&FilterGroupID=1&viewTitle=Acked%20Events
  • The title to display in the view.
    Example: Acked Events

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
Back to Top