Skip to main content
GET
List endpoint events

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectId
string
required

Project identifier.

id
string
required

Endpoint identifier.

Query Parameters

limit
integer

Maximum number of events to return. Max 500, defaults to 50.

after
string

Cursor from a previous endpoint event list response.

types
string[]

Event types to include, such as deployment.scaled or condition.set. Combined with other filters using AND.

minLevel
enum<string>

Minimum severity. Omit to disable severity filtering.

Available options:
LEVEL_DEBUG,
LEVEL_INFO,
LEVEL_WARN,
LEVEL_ERROR
since
string<date-time>

Return only events at or after this time.

until
string<date-time>

Return only events strictly before this time.

deploymentIds
string[]

Deployment IDs whose events should be included. Every ID must belong to the endpoint. Supplying this filter excludes endpoint-scoped events unless SOURCE_KIND_ENDPOINT is also included in sourceKinds.

sourceKinds
enum<string>[]

Resource kinds whose events should be included. Omit to include both endpoint- and deployment-scoped events.

Available options:
SOURCE_KIND_ENDPOINT,
SOURCE_KIND_DEPLOYMENT
subjectId
string

ID of a subject associated with the event, such as a rollout. Combined with other filters using AND.

Response

OK

Endpoint and deployment lifecycle events, ordered newest first.

data
object[]
required

Events for the endpoint, newest first.

object
any
required

Object type. Always list.

next_cursor
string

Cursor for the next page. Null if there are no more results.