EventstreamRequest

Parameters for requesting eventstream events

Fields

FieldDescription
id
string 
(required)

Minimum id to start reading the stream

Example value:"0"
eventtypes
string 
(required)

Comma separated list of event types to filter on

Example value:"webshop:add_tickets,webshop:add_products"
ts
string 
(required)

Timestamp in ISO-8601 format to start reading the stream, mutually exclusive with the id

Example value:"2022-09-26T09:00:00+0000"

Example

1{
2    "id": "0",
3    "eventtypes": "webshop:add_tickets,webshop:add_products",
4    "ts": "2022-09-26T09:00:00+0000"
5}