Get an alert timeline from an alert.
GET
/v1/alerts/{org_uuid}/{alert_uuid}/timeline
Get an alert timeline from an alert.
Authorizations
apiKey
API key as username in Basic Authorization with
empty password.
TypeAPI Key (header: Authorization)
or
jwtToken
TypeHTTP (bearer)
Parameters
Path Parameters
org_uuid*
UUID of the organization
Typestring
Requiredformat
"uuid"alert_uuid*
The ID of the alert
Typestring
RequiredExample
"01c9fb02-7648-45f5-9bdd-f2c27e59c448"format
"uuid"Query Parameters
page
Page number to return
Typeinteger
Example
1format
"int64"minimum
1per_page
Number of elements per page
Typeinteger
format
"int64"minimum
1default
10Responses
OK
application/json
JSON
{
"alert_events": [
{
"author_id": "string",
"created_at": "string",
"type": "string",
"actions": [
{
"action": "add",
"field": "resolved_at",
"value": "42",
"grouping_id": 323
}
]
}
],
"paginated_result": {
"total": 0,
"page": 0,
"per_page": 0
}
}