v33

latestOpenAPI 3.1.0raw.githubusercontent.com2026-04-2972102177.5 KB
Event Coordination

Signal Event

Signals an event with associated data, unblocking any clients waiting for this event. This enables coordination between different browser sessions, workflows, or external processes.

post/v1/events/{event_name}

Path parameters

event_namestring required

The name of the event to signal

Request body

dataobject required

Event data to be passed to waiting clients

Example request

{
  "data": {
    "message": "Task completed",
    "result": "success",
    "timestamp": "2024-01-01T12:00:00Z"
  }
}

Response

Event signaled successfully