/event/list

List events

Request

HTTP Method: POST
Content Type: application/json

Parameters

Property

Type

Description

Property

Type

Description

configuration_id

integer(int64)

configuration ID to list events for (optional) (non-negative)

{ "params": { "configuration_id": 1 } }

Response

HTTP Status: 200

Content Type: application/json

Response

Property

Type

Description

Property

Type

Description

error

object of type error_response

error response

result

object of type event_list_response

event/list response

successful

boolean

response with error or not

error_response

Property

Type

Description

Property

Type

Description

message

string

error message

event_list_response

Property

Type

Description

Property

Type

Description

events

array of event

list of events

event

Property

Type

Description

Property

Type

Description

configuration_id

integer(int64)

configuration ID (non-negative)

configuration_name

string

configuration name

body

string

event body

created

string(date-time)

event created time in UTC

event_id

string

event ID

group

string

event group

issued_by

string

event issued by component

superseded

boolean

whether this event is superseded by a more-recent event for the same configuration

title

string

event title

type

string

event type (possible values: 'Success', 'Error', 'Warning' and 'Info')

{ "error": { "message": "string" }, "result": { "events": [ { "body": "string", "configuration_id": 1, "configuration_name": "string", "created": "2024-07-31T13:57:42.000123456Z", "event_id": "string", "group": "string", "issued_by": "string", "superseded": false, "title": "string", "type": "Success" } ] }, "successful": true }

HTTP Status: 400

Content Type: application/json

Response

Property

Type

Description

Property

Type

Description

error

object of type error_response

error response

successful

boolean

always false

error_response

Property

Type

Description

Property

Type

Description

message

string

error message

{ "error": { "message": "string" }, "successful": false }