GET/deployments/{id}/events

Establishes a Server-Sent Events (SSE) stream that delivers real-time logs and status updates for a deployment. The stream terminates automatically once the deployment reaches a terminal state.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

The deployment ID to follow.

Query Parameters

since?string

Show logs since the given time (RFC timestamps or durations like 5m).

Response Body

text/event-stream

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/deployments/string/events"
{  "event": "log",  "timestamp": "2019-08-24T14:15:22Z",  "message": "string"}