Service: Event
| This API is not yet officially released nor maintained. |
Service for actionable events
| Method | Request | Response |
|---|---|---|
EventStreamResponseStream |
||
Stream
A method to get a stream of events.
Request
Request for stream method
| Only a limited amount of events is persisted. |
| Field | Type | Default | Unit |
|---|---|---|---|
id |
optional string |
- |
- |
Identifier from which the stream should start. |
|||
reverse |
bool |
- |
- |
Stream events in reverse. This fetches events from persistent database. The events are emitted in batches. When no stream response is returned, no more events are available. |
|||
Response Stream
Response to stream method
| Field | Type | Default | Unit |
|---|---|---|---|
id |
string |
- |
- |
Unique identifier of event. The ID has the format: $timestamp-$revision. $timestamp is a monotonic counter in seconds. $revision is usually 0 but incremented when there a multiple events per second. |
|||
event |
- |
- |
|
Event payload. |
|||
Get
Method to get one Event by its id
Request
Request for Get method
| Field | Type | Default | Unit |
|---|---|---|---|
id |
string |
- |
- |
Identifier of the event; see EventStreamRequest and EventStreamResponse for more details |
|||