List event streams
/event-streamsLists the event streams created by the current credential, using cursor-based pagination.
Event streams created by other credentials are never included, even within the same account.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Query Parameters
1 <= value <= 200Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/event-streams"{ "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" } ], "page": { "limit": 1, "next_cursor": "string", "prev_cursor": "string" }}Event streams
Event streams in API v3: list event streams, create an event stream, retrieve an event stream, revoke an event stream, connect to an event stream.
Create an event stream POST
Creates an event stream that delivers the account's public events over Server-Sent Events (SSE), with the same payloads and ordering as the events collection. Optional filters restrict the stream to specific event types and resource types. Requires an `Idempotency-Key` header. The credential must also have the `events.read` permission; otherwise the request fails with `permission_denied`. The number of active event streams is limited per credential and per account. Creating a stream beyond these limits returns `too_many_streams`.