Retrieve an event stream

GET/event-streams/{event_stream_id}

Returns the event stream's status, filters, delivery cursor, and connection state.

Revoked and expired event streams remain retrievable.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

event_stream_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/event-streams/string"
{  "data": {    "connection": {      "connected": true,      "since": "2019-08-24T14:15:22Z"    },    "created_at": "2019-08-24T14:15:22Z",    "cursor": {      "advanced_at": "2019-08-24T14:15:22Z",      "last_event_id": "string"    },    "expires_at": "2019-08-24T14:15:22Z",    "filters": null,    "id": "string",    "last_seen_at": "2019-08-24T14:15:22Z",    "object": "event_stream",    "status": "active"  }}