Events

Gets information about events of a context. The response contains the list of events. You can use an optional parameter to include format information in the response.

Request

GET /v1/contexts/{contextPath}/events

Replace {contextPath} with a full context path.

For the Root Context, use server as {contextPath}.

Request Header Fields

  • Authorization — Authentication token. For more information about authentication, see Authenticating.

Request Parameters

  • includeFormat — Optional parameter. Include table format information in the response. This information is provided in the tableFormat field. Possible values: true, false.

Response Body

List of events of a context. Each record contains information about an event.

Response Body Fields

  • name — Event name.

  • group — Event group.

  • level — Event level.

  • tableFormat — Information about table format.

Example Request

Request:

   GET https://localhost:8443/rest/v1/contexts/users.admin.devices.virtual/events?includeFormat=false

Example response body JSON:

    [
       {
           "name": "info",
           "group": "default",
           "level": 2,
           "tableFormat": null
       },
       {
           "name": "visibleInfoChanged",
           "group": null,
           "level": 0,
           "tableFormat": null
       }
   ]

Was this page helpful?