Events
List ingested events
List ingested events with advanced filtering and cursor pagination.
get/api/v2/events
Query parameters
cursorstring
The cursor after which to start the pagination.
limitinteger
The limit of the pagination.
clientIdstring
Client ID Useful to track progress of a query.
The filter for the events encoded as JSON string.
Response
The request has succeeded.
Example response
{
"items": [
{
"event": {
"id": "5c10fade-1c9e-4d6c-8275-c52c36731d3c",
"source": "service-name",
"specversion": "1.0",
"type": "prompt",
"subject": "customer-id",
"time": "2023-01-01T01:01:01.001Z"
},
"ingestedAt": "2023-01-01T01:01:01.001Z",
"storedAt": "2023-01-01T01:01:02.001Z"
}
]
}