/event/show

Follow

Show event detail

Request

HTTP Method: POST
Content Type: application/json

Parameters

Property

Type

Description

event_id

string

event ID

{
    "params": {
        "event_id": "string"
    }
}

Response

HTTP Status: 200

Content Type: application/json

Response

Property

Type

Description

error

object of type error_response

error response

result

object of type event

event details

successful

boolean

response with error or not

error_response

Property

Type

Description

message

string

error message

event

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": {
        "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

error

object of type error_response

error response

successful

boolean

always false

error_response

Property

Type

Description

message

string

error message

{
    "error": {
        "message": "string"
    },
    "successful": false
}
Have more questions? Submit a request

Comments