Skip to content

Account-Scoped Pipeline Events (SSE)

GET
/v1/events
curl --request GET \
--url https://example.com/v1/events

Subscribe to all pipeline events for the caller’s account.

x-api-key
string | null

Successful Response

Validation Error

Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationError
object
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}