Get member events for the incident

get

https://EM_HOST:EM_CONSOLE_HTTPS_PORT/em/api/incidents/{incidentId}/events

Returns the list of events participating in the specific incident. The events are sorted by the time of creation by default.

Request

Path Parameters
Query Parameters
  • Limits number of items returned in current call. Use the self/previous/next links from the response to fetch additional items.
    Default Value: 50
  • Identifies the set of items to be fetched; "href" element from "links" list of the response provides encoded value for this parameter. "href" element value should be used "as is" for fetching respective set of items.
    Default Value: Base64 encode value of 0 i.e MA==
  • Sort results by supported resource attributes such as id, name, message, type, timeCreated. timeUpdated, isOpen and severity
    Example:
    severity:ASC,timeCreated:DESC

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation - Fetch all the related events to the incident
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : EventCollection
Type: object
List of event summary
Show Source
Nested Schema : items
Type: array
List of the event summary
Show Source
Nested Schema : EventSummary
Type: object
Summary of an event
Show Source
Nested Schema : nonTargetEntities
Type: array
Minimum Number of Items: 0
Unique Items Required: true
Entities other than targets which are affected by this event
Show Source
Nested Schema : targets
Type: array
Minimum Number of Items: 0
Unique Items Required: true
Targets affected by this incident
Show Source
Nested Schema : SourceEntity
Type: object
Details of an source entity
Show Source
Nested Schema : schema
Type: object
Target details
Show Source

400 Response

Bad Request
Body ()
Root Schema : ErrorResponse
Type: object
Error response
Show Source

401 Response

Unauthorized
Body ()
Root Schema : ErrorResponse
Type: object
Error response
Show Source

404 Response

Not Found
Body ()
Root Schema : ErrorResponse
Type: object
Error response
Show Source

500 Response

Internal Server Error
Body ()
Root Schema : ErrorResponse
Type: object
Error response
Show Source

503 Response

Service Unavailable
Body ()
Root Schema : ErrorResponse
Type: object
Error response
Show Source
Back to Top