When to use
Place this node after the Event Orchestrator to execute the event action. You typically need two Event Manager nodes in a workflow — one on the “Create Event” output and one on the “Close Event” output.Operations
- Create Event
- Update Event
- Close Event
- Get Event
Creates a new event in Worlds with full metadata.
Required fields
| Parameter | Type | Description |
|---|---|---|
| Event Producer | Select | The event producer to create events under (dynamically loaded) |
| Event Type | String | Event category (e.g., “Operational”, “Safety”) |
| Event Subtype | String | Further categorization (e.g., “Obstruction Event”) |
| Start Time | DateTime | When the event started. Typically ={{$json.track_state.last_seen}} |
Optional fields
| Parameter | Type | Description |
|---|---|---|
| End Time | DateTime | If provided, creates the event in a closed state. This also closes the event in the orchestrator’s local Redis cache, so you don’t need a separate close step in your workflow. This is particularly useful for batch mode workflows where the track has already expired and you know both the start and end time at creation. |
| Track IDs | String | Track IDs to associate with the event |
| Metadata | Key-Value pairs | Custom metadata (trackId, dataSourceID, tag, position, etc.) |
| Snapshots | Collection | Camera snapshots to attach (dataSourceId + timestamp) |
| Uploads | Collection | Binary data to upload (e.g., processed images, GIFs) |
Advanced settings
| Parameter | Type | Description |
|---|---|---|
| Site IDs | String | Comma-separated site IDs |
| Data Source IDs | String | Comma-separated data source IDs |
| Tags | String | Comma-separated tags |
| Priority | String | Event priority level |
| Draft | Boolean | Mark event as draft |
Output
The create operation returns the created event data:Credentials
Requires GraphQL Subscription API credentials.Example
- In the Batch Track State Workflow (batch), a single Event Manager creates the event with both start and end time — no close step needed
- In the Streaming Zone State Workflow (streaming zone state), two Event Manager nodes are used — one to create and one to close when conditions clear
- In the Streaming Track State Workflow (streaming track state), two Event Manager nodes handle create and close paths

