List event streams

GET/event-streams

Lists 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.

AuthorizationBearer <token>

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

In: header

Query Parameters

limit?integer
Range1 <= value <= 200
cursor?string

Header Parameters

X-Client-Request-Id?string

Optional client-generated identifier of the request, up to 64 characters from [A-Za-z0-9._-]. Echoed back in the response and recorded in the request log; it never replaces the server-generated X-Request-Id.

Lengthlength <= 64

Response Body

application/json

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"  }}